file_get_contents('php://input') 始终返回空字符串

2022-08-30 15:51:58

我正在构建一个PHP RESTful API,遵循本教程。以下函数在使用 'put' 方法时应返回随请求发送的数据,每次都返回 null:

file_get_contents('php://input').

我甚至在教程中下载并测试了完整的代码示例,它仍然返回null。

我正在使用cURL和以下命令来测试“put”方法:

curl -i -X PUT -d '{"address":"Sunset Boulevard"}' http://localhost/clients/ryan.

我已经浪费了几天的时间在这个上面,仍然没有让它来读取json数据。我做错了什么?


答案 1

Web 上其他位置所述,如果请求被重定向,内容将无法通过。也许您的Web服务器具有从以www开头的URL到没有www的URL的重定向,或者从使用HTTP的URL到使用HTTPS的URL的URL。检查 Web 服务器日志以验证这一点,并相应地采取措施以避免在调用 Web 服务时进行重定向。php://input


答案 2

首先,我能够运行此代码,并且工作正常:

--Terminal---------
//I ran this curl request against my own php file:
curl -i -X PUT -d '{"address":"Sunset Boulevard"}' http://localhost/test.php


--PHP--------------
//get the data
$json = file_get_contents("php://input");

//convert the string of data to an array
$data = json_decode($json, true);

//output the array in the response of the curl request
print_r($data);

如果这不起作用,请检查控制台中的错误和您的php设置:

  1. 您使用的 curl 网址,请确保该网址确实有效且未返回错误。
  2. 打开另一个终端/控制台窗口并运行,以便您可以实际看到这些php调用的输出。tail -f /path/to/the/php/log/file
  3. 人们经常会得到这个错误:这可能表明“file://input”字符串的拼写错误或在php中被禁用的事实(如果不确定,请参阅#5)file_get_contents(file://input): failed to open stream: no suitable wrapper could be foundallow_url_fopen
  4. 确保你的代码是正确的,我的意思是确保你没有输入不正确的参数和东西......在netbeans中不一定带有下划线的东西。
  5. 请记住,仅当在 PHP 设置中设置为 true 时才有效。这是在php.ini中设置的,但你也可以在运行时更改设置,方法是在其他代码之前按照以下代码的行编写一些内容:file_get_contentsallow_url_fopen

    ini_set("allow_url_fopen", true);
    

推荐