- 时间:2022-10-24 14:17 编辑: 来源: 阅读:
- 扫一扫,手机访问
摘要:file_get_contents("php://input", "r")实例介绍
[b]解释不清,直接上例子
[/b]
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/>";
?>
[img]http://files.jb51.net/file_images/article/201307/201307010931452.jpg[/img]
[img]http://files.jb51.net/file_images/article/201307/201307010931453.jpg[/img]