如何获取HTTP_RAW_POST_DATA并可以调整大小以创建更小的图像。随着图像保存到磁盘我有这样做的类,更多的是获取HTTP_RAW_POST_DATA我不知道该怎么做
if ( isset ( $GLOBALS["HTTP_RAW_POST_DATA"] ))
{
//the image file name
$fileName = $_GET['nome'].".jpg";
// get the binary stream
$im = $GLOBALS["HTTP_RAW_POST_DATA"];
//write it
$fp = fopen('saves/print/'.$fileName, 'wb');
fwrite($fp, $im);
fclose($fp);
}