解释不清,直接上例子
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/>";
?>
您可能感兴趣的文章:PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析深入php函数file_get_contents超时处理的方法详解解析PHP中的file_get_contents获取远程页面乱码的问题php读取本地文件常用函数(fopen与file_get_contents)PHP file_get_contents设置超时处理方法php 使用file_get_contents读取大文件的方法PHP使用fopen与file_get_contents读取文件实例分享
get
file
file_get_contents
PHP
input