file_get_contents("php://input", "r")实例介绍
程序员文章站
2022-06-30 10:53:49
解释不清,直接上例子index.html复制代码 代码如下:
解释不清,直接上例子
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/>";
?>
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/>";
?>
下一篇: 简单好用的nodejs 爬虫框架分享
推荐阅读