码迷,mamicode.com
首页 > Web开发 > 详细

PHP后台接收Base64图片

时间:2017-02-26 14:16:12      阅读:197      评论:0      收藏:0      [点我收藏+]

标签: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);

 

PHP后台接收Base64图片

标签:base64   fclose   lin   code   fopen   div   link   write   logs   

原文地址:http://www.cnblogs.com/yida915/p/6444064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!