php://input에 대한 소개와 관련하여 PHP 공식 매뉴얼 문서에는 이를 명확하게 설명하는 단락이 있습니다.
“php://input을 사용하면 원시 POST 데이터를 읽을 수 있습니다. $HTTP_RAW_POST_DATA에 비해 메모리 사용량이 적고 특별한 php.ini 지시어가 필요하지 않습니다. php://input은 enctype=과 함께 사용할 수 없습니다. multipart/form-data".
번역하면 다음과 같습니다.
"php://input은 처리되지 않은 POST 데이터를 읽을 수 있습니다. $HTTP_RAW_POST_DATA와 비교할 때 메모리에 대한 부담이 적고 특별한 php.ini 설정이 필요하지 않습니다. php://input은 enctype=multipart/form-data”에 사용할 수 없습니다.
요약은 다음과 같습니다.
1) Coentent-Type은 application/x-www 값만 사용합니다. -data- urlencoded 및 multipart/form-data의 두 가지 경우에서 PHP는 http 요청 패킷의 해당 데이터를 전역 변수 $_POST
2)에 채웁니다. 이때 Content-Type 유형은 다음과 같습니다. PHP에서 인식되지 않습니다. http 요청 패킷의 해당 데이터는 $HTTP_RAW_POST_DATA 변수에 채워집니다
3) Coentent-Type이 multipart/form-data인 경우에만 PHP는 해당 데이터를 채우지 않습니다. php://input의 데이터, 그렇지 않은 경우 채워진 길이는 Coentent-Length에 의해 지정됩니다. 4) Content-Type이 application/x-www-data-urlencoded인 경우에만 php:/ /input 데이터는 $_POST 데이터와 일치합니다.
5) php://input 데이터는 항상 $HTTP_RAW_POST_DATA와 동일하지만 php://input은 $HTTP_RAW_POST_DATA보다 효율적이며 특별할 필요가 없습니다. .php.ini
6)를 설정하면 PHP는 PATH 필드의 query_path 부분을 전역 변수 $_GET에 채웁니다. 일반적으로 GET 메서드에 의해 제출된 http 요청의 본문은 비어 있습니다. >
결론적으로 $_POST를 사용하여 APP나 일부 인터페이스에서 콜백 데이터를 가져올 수 없는 경우 php://input을 사용해 보세요
1. xml 데이터 허용
2. 휴대폰에서 서버로 사진을 업로드하는 작은 프로그램
보내기//发送xml数据 $xml = '<xml>xmldata</xml>';//要发送的xml $url = 'http://localhost/test/getXML.php';//接收XML地址 $header = 'Content-type: text/xml';//定义content-type为xml $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOPT_URL, $url);//设置链接 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息 curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头 curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式 curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);//POST数据 $response = curl_exec($ch);//接收返回信息 if(curl_errno($ch)){//出错则显示错误信息 print curl_error($ch); } curl_close($ch); //关闭curl链接 echo $response;//显示返回信息 // php用file_get_contents("php://input")或者$HTTP_RAW_POST_DATA可以接收xml数据 $xmldata = file_get_contents("php://input"); $data = (array)simplexml_load_string($xmldata);
//@file phpinput_post.php $data=file_get_contents('btn.png'); $http_entity_body = $data; $http_entity_type = 'application/x-www-form-urlencoded'; $http_entity_length = strlen($http_entity_body); $host = '127.0.0.1'; $port = 80; $path = '/image.php'; $fp = fsockopen($host, $port, $error_no, $error_desc, 30); if ($fp){ fputs($fp, "POST {$path} HTTP/1.1\r\n"); fputs($fp, "Host: {$host}\r\n"); fputs($fp, "Content-Type: {$http_entity_type}\r\n"); fputs($fp, "Content-Length: {$http_entity_length}\r\n"); fputs($fp, "Connection: close\r\n\r\n"); fputs($fp, $http_entity_body . "\r\n\r\n"); while (!feof($fp)) { $d .= fgets($fp, 4096); } fclose($fp); echo $d; }
/** *Recieve image data **/ error_reporting(E_ALL); function get_contents() { $xmlstr= file_get_contents("php://input"); $filename=file_put_contentsxmltime().'.png'; if(($filename,$str)){ echo 'success'; }else{ echo 'failed'; } } get_contents();
더 보기 PHP 입력 흐름 php.://input 예제 관련 기사는 PHP 중국어 웹사이트
를 참고하세요.