PHP to save binary raw data as a picture of the program code
Get post binary raw data, choose a generated path and the name of the picture, then write, the idea is obvious
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21st 22 23 24 25 26 27 28 |
Create a picture $imgDir = ' uploadimg/'; $filename = "NISSANGCJ". $mobile. ". JPG ";///The name of the image to be generated $xmlstr = $GLOBALS [Http_raw_post_data]; if (empty ($XMLSTR)) { $xmlstr = file_get_contents (' php://input '); } $jpg = $xmlstr;//get post binary raw data if (empty ($jpg)) { Echo ' Nostream '; Exit (); } $file = fopen ("./". $imgDir. $filename, "w");//Open file ready to write Fwrite ($file, $jpg);//write Fclose ($file);//Close $filePath = './'. $imgDir. $filename; Whether the picture exists if (!file_exists ($filePath)) { Echo ' Createfail '; Exit (); } |
http://www.bkjia.com/PHPjc/894051.html www.bkjia.com true http://www.bkjia.com/PHPjc/894051.html techarticle PHP Save binary raw data for the picture of the program code to get post binary raw data, select a generation path and the name of the picture, then write, the idea is very obvious ...