php://input 定义:可以访问请求的原始数据的只读流
php://input 用法:读取http entity body中指定长度的值,长度由Content-Length指定
HTTP_RAW_POST_DATA
官方文档解释:原生POST数据。需要通过php.ini开启,开启后可通过全局变量 $GLOBALS['HTTP_RAW_POST_DATA'] 获取到post数据。
需要设置 php.ini 中的
always_populate_raw_post_data
值为 On 才会生效不能用于 enctype="multipart/form-data"
PHP7中已经移除了这个全局变量,用 php://input 替代
- 相比php://input 需要更多的内存
php://input 访问各个输入/输出流。允许访问 PHP 的输入输出流、标准输入输出和错误描述符, 内存中、磁盘备份的临时文件流以及可以操作其他读取写入文件资源的过滤器。
不需要任何特殊的 php.ini 设置
不能用于 enctype="multipart/form-data"
- 数据获取方式 :$data = file_get_contents("php://input");
可以看成是把$HTTP_RAW_POST_DATA过滤和格式化后的数据。识别的数据类型是PHP默认识别的数据类型 application/x-www.form-urlencoded
无法解析如text/xml,application/json等非 application/x-www.form-urlencoded 数据类型的内容
- 经验证不能用于enctype="text/plain"
- 经验证可用于enctype="multipart/form-data"
POST 请求的情况下,最好使用 php://input 来代替 $HTTP_RAW_POST_DATA,因为它不依赖于特定的 php.ini 指令。 而且,这样的情况下 $HTTP_RAW_POST_DATA 默认没有填充, 比激活 always_populate_raw_post_data 需要内存少。
getXML.php;//接收XML地址
$xml
=
'xmldata'
;
//要发送的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
;
//显示返回信息
?>
//@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
=time().
'.png'
;
if
(
file_put_contents
(
$filename
,
$xmlstr
)){
echo
'success'
;
}
else
{
echo
'failed'
;
}
}
get_contents();
?>
/**
* 获取HTTP请求原文
* @return string
*/
function
get_http_raw() {
$raw
=
''
;
// (1) 请求行
$raw
.=
$_SERVER
[
'REQUEST_METHOD'
].
' '
.
$_SERVER
[
'REQUEST_URI'
].
' '
.
$_SERVER
[
'SERVER_PROTOCOL'
].
"\r\n"
;
// (2) 请求Headers
foreach
(
$_SERVER
as
$key
=>
$value
) {
if
(
substr
(
$key
, 0, 5) ===
'HTTP_'
) {
$key
=
substr
(
$key
, 5);
$key
=
str_replace
(
'_'
,
'-'
,
$key
);
$raw
.=
$key
.
': '
.
$value
.
"\r\n"
;
}
}
// (3) 空行
$raw
.=
"\r\n"
;
// (4) 请求Body
$raw
.=
file_get_contents
(
'php://input'
);
return
$raw
;
}