首页 小组 问答 话题 好文 素材 用户 唠叨 我的社区

[函数]php url图转base64编码

风轻yLv.1种子选手
2024-09-11 14:40:29
0
48


/**
 * 网络图转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)));
}
风轻y
风轻y

41 天前

签名 :   48       0
评论
站长交流