概述
$base64 = file_get_contents("php://input"); //获取输入流
$base64 = json_decode($base64,1);
$data = $base64['base64'];
preg_match("/data:image/(.*);base64,/",$data,$res);
$ext = $res[1];
if(!in_array($ext,array("jpg","jpeg","png","gif"))){
echo json_encode(array("error"=>1));die;
}
$file = time().'.'.$ext;
$data = preg_replace("/data:image/(.*);base64,/","",$data);
if (file_put_contents($file,base64_decode($data))===false) {
echo json_encode(array("error"=>1));
}else{
echo json_encode(array("error"=>0));
}
最后
以上就是爱撒娇花卷为你收集整理的php获取图片数据,服务器端php获取图片数据流的全部内容,希望文章能够帮你解决php获取图片数据,服务器端php获取图片数据流所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复