/** * 网络图转base64编码 * @param img 图片网址 **/ public function imgToBase64($img = '') { if (!$img) { return false; } $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))); }
php url图转base64编码
最新推荐文章于 2025-05-30 09:27:59 发布