file_get_contents("php://input", "r")实例介绍
file_get_contents("php://input", "r")实例介绍
发布时间:2016-12-29 来源:查字典编辑
摘要:解释不清,直接上例子index.html复制代码代码如下:action.php复制代码代码如下:

解释不清,直接上例子

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/>";

?>

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

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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类