RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
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://sczitong.cn/article/igdhje.html