当前位置:Gxlcms >
PHP教程 >
file_get_contents("php://input","r")实例介绍_php技巧
file_get_contents("php://input","r")实例介绍_php技巧
时间:2021-07-01 10:21:17
帮助过:66人阅读
解释不清,直接上例子
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 . "
";
?>