主页 M

php中file_get_contents("php://input", "r")实例介绍

2015-06-27 网页编程网 网页编程网

先看以下例子。

//文件名:index.html
<form action="action.php" method="post" >
<input type="text" name="userName"  id="userName" /><br/>
<input type="text" name="userPass"  id="userPass" /><br/>
<input type="submit" value="ok" />
</form>
//action.php
<?php
$raw_post_data = file_get_contents('php://input', 'r');
echo "-------\$_POST------------------<br/>";
echo var_dump($_POST) . "<br/>";
echo "-------php://input-------------<br/>";
echo $raw_post_data . "<br/>";
?> 

可直接显示出所有输出的结果。

阅读原文
阅读 3926
123 显示电脑版