标签:base64 fclose lin code fopen div link write logs
PHP后台接收Base64图片的时候,如何将该字符串转成图片呢?
使用base64_decode 和 fopen和fwrite组合的方法,将图片成功还原;
//$img为传入字符串 $img = str_replace(‘data:image/png;base64,‘, ‘‘, $img); $img = str_replace(‘ ‘, ‘+‘, $img); $data = base64_decode($img); $imgPath="test.png"; if(@file_exists($imgPath)){ @unlink($imgPath); }@clearstatcache(); $fp=fopen($imgPath,‘w‘); fwrite($fp,$data); fclose($fp);
标签:base64 fclose lin code fopen div link write logs
原文地址:http://www.cnblogs.com/yida915/p/6444064.html