解释file_get_contents('php://input')

2022-08-31 00:48:21

我正在编写一个Android应用程序来连接到PHP Web服务,通过我在互联网上的搜索,我遇到了,我理解了它功能的某些部分,但我仍然不明白。什么是什么或或类似的东西?我读过 http://php.net/manual/en/function.file-get-contents.php,我更加困惑。file_get_contents('php://input');php://inputphp://stdin

请完整解释。


答案 1

信息来自这里:http://www.php.net/manual/en/wrappers.php.php

当信息通过请求发送到服务器时,它被保存在一个临时文件中。POST

该命令读取发送到 PHP 的原始信息 - 在放入或超级全局变量之前未处理。file_get_contents('php://input')$_POST$_REQUEST

当有人上传文件(如图像)时,通常会使用此方法。

编辑:删除了$_GET


答案 2

推荐