标签:play 之一 http请求 [1] size spl one aaa 编码
<img src="data:image/png;base64,iVBORw0KGgoAAA.....">
$str = file_get_contents(‘./test.png‘);
echo base64_encode($str);
//匹配去除data:image/bmp;base64,部分 $base64 = "data:image/bmp;base64,Qk22Eg31651651"; preg_match(‘/^(data:\s*image\/(\w+);base64,)/‘, $base64, $result); $r = str_replace($result[1], ‘‘, $base64); $tmp = base64_decode($r); //解码 file_put_contents( "img.jpg", $tmp); //写文件
标签:play 之一 http请求 [1] size spl one aaa 编码
原文地址:https://www.cnblogs.com/php99/p/9797241.html