file_get_contents php://input file_get_contents("php://input", "r")实例介绍
人气:0想了解file_get_contents("php://input", "r")实例介绍的相关内容吗,在本文为您仔细讲解file_get_contents php://input的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:file_get_contents,php://input,下面大家一起来学习吧。
解释不清,直接上例子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/>";
?>
加载全部内容