首页 > 开发 > PHP > 正文

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

2024-05-04 23:11:45
字体:
来源:转载
供稿:网友
解释不清,直接上例子
index.html

复制代码 代码如下:


<form action="action.php" method="post" >
<input type="text" /><br/>
<input type="text" /><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)实例介绍

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表