Home >Backend Development >PHP Tutorial >file_get_contents("php://input", "r")实例介绍_php技巧

file_get_contents("php://input", "r")实例介绍_php技巧

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-17 08:57:391345browse
解释不清,直接上例子
index.html
复制代码 代码如下:

 

 

 

 
 


action.php
复制代码 代码如下:

$raw_post_data = file_get_contents('php://input', 'r');
echo "-------\$_POST------------------
";
echo var_dump($_POST) . "
";
echo "-------php://input-------------
";
echo $raw_post_data . "
";
?>

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn