/**
* 獲取網(wǎng)絡圖片的Base64編碼
* $img_url 網(wǎng)絡圖片地址
* $hasPre 是否有前綴
* @return string
*/
public function imgToBase64($img_url,$hasPre = true)
{
$img_base64 = '';
$imageInfo = getimagesize($img_url);
if (!$imageInfo) {
return false;
}
$img_base64 = "" . chunk_split(base64_encode(file_get_contents($img_url)));
if ($hasPre) {
$img_base64 = 'data:' . $imageInfo['mime'] . ';base64,'.$img_base64;
}
return $img_base64;
}