首頁  >  文章  >  後端開發  >  服务器端php获取图片数据流

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

WBOY
WBOY原創
2016-06-20 12:55:361886瀏覽

<?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));}




陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn