得到post過來的二進制原始數據,選擇一個生成路徑及圖片的名字,之後寫入,思路很顯而易見
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 //生成圖片 $imgDir = 'uploadImg/'; $filename="nissangcj".$mobile.".jpg";///要生成的圖片名字 $xmlstr = $GLOBALS[HTTP_RAW_POST_DATA]; if(empty($xmlstr)) { $xmlstr = file_get_contents('php://input'); } $jpg = $xmlstr;//得到post過來的二進制原始數據 if(empty($jpg)) { echo 'nostream'; exit(); } $file = fopen("./".$imgDir.$filename,"w");//打開文件准備寫入 fwrite($file,$jpg);//寫入 fclose($file);//關閉 $filePath = './'.$imgDir.$filename; //圖片是否存在 if(!file_exists($filePath)) { echo 'createFail'; exit(); }