php把网络图片转Base64编码。(php将图片链接直接转化为base64编码)

 /** 把网络图片图片转成base64
     * @param string $img 图片地址
     * @return string
     */
    /*网络图片转为base64编码*/
    public 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)));
    }

 

posted @ 2019-07-13 09:22  搬砖小伙子  阅读(5538)  评论(0编辑  收藏  举报