file_get_contents("php://input", "_PHP教程
程序员文章站
2024-01-09 12:32:22
...
解释不清,直接上例子
index.html
action.php
$raw_post_data = file_get_contents('php://input', 'r');
echo "-------\$_POST------------------
";
echo var_dump($_POST) . "
";
echo "-------php://input-------------
";
echo $raw_post_data . "
";
?>
index.html
复制代码 代码如下:
action.php
复制代码 代码如下:
$raw_post_data = file_get_contents('php://input', 'r');
echo "-------\$_POST------------------
";
echo var_dump($_POST) . "
";
echo "-------php://input-------------
";
echo $raw_post_data . "
";
?>
推荐阅读
-
file_get_contents("php://input", "_PHP教程
-
[视频教程]LAMP兄弟连视PHP函数-file_get_contents
-
php采用file_get_contents代替使用curl实例,curlgetcontents_PHP教程
-
解决file_get_contents无法请求https连接的方法_PHP教程
-
PHP file_get_contents采集程序开发教程详解
-
php fopen()和file_get_contents() 区别介绍,filegetcontents_PHP教程
-
PHP5.4以上更新的伪"多继承"--trait语法,php5.4--trait_PHP教程
-
php file_get_contents()读取采集远程文件内容_PHP教程
-
PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析_PHP教程
-
PHP-CGI 进程 CPU 100% 与 file_get_contents 函数的关系_PHP教程