PHP 将图片链接转为 base64 方法 0 By 董德多 on 2020年8月3日 PHP $imgUrl = '图片url'; if(file_exists($imgUrl)){ $imageInfo = getimagesize($imgUrl); return 'data:' . $imageInfo['mime'] . ';base64,' . base64_encode(file_get_contents($imgUrl)); } return ''; base64 图片