网站建设资讯

NEWS

网站建设资讯

phpbase64上传图片

                     $ymd = date("Ymdhis");
        //图片路径地址
        $img = str_replace('data:image/png;base64,', '', $img);
        $img = str_replace(' ', '+', $img);
        $data = base64_decode($img);

        $imgPath='./upload/person/'.$ymd.'jpg';
        $fp=fopen($imgPath,'w');
        fwrite($fp,$data);
        fclose($fp);
        $ary['status'] = 1;
        $ary['info'] = '保存图片成功';
        $ary['url'] = $imgPath;

        return $ary;

网页题目:phpbase64上传图片
标题来源:http://cdweb.net/article/igdhje.html