php获取图片数据,服务器端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...