php url图转base64编码

论坛 期权论坛 脚本     
已经匿名di用户   2022-5-29 19:19   1643   0
/**
 * 网络图转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)));
}
分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:81
帖子:4969
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP