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

服务器端php获取图片数据流

时间:2015-05-28 11:06:13      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

<?php
$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获取图片数据流

标签:

原文地址:http://my.oschina.net/u/2269208/blog/420852

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