🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
``` ~~~ /** * @param string $img * @param bool $imgHtmlCode * @return string * @describe:img to base64 */ function imgtobase64($img = '', $imgHtmlCode = true) { $imageInfo = getimagesize($img); //$base64 = "" . chunk_split(base64_encode(file_get_contents($img))); return 'data:' . $imageInfo['mime'] . ';base64,' . chunk_split(base64_encode(file_get_contents($img))); } ~~~ ```