编程语言
首页 > 编程语言> > file_get_contents(‘php:// input’)总是返回一个空字符串

file_get_contents(‘php:// input’)总是返回一个空字符串

作者:互联网

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

的file_get_contents( ‘PHP://输入’).

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

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

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

我已经浪费了很多时间,仍然没有阅读json数据.我究竟做错了什么?

解决方法:

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

--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设置:

>你使用的curl url,确保url实际工作并且不返回错误.
>打开另一个终端/控制台窗口并运行tail -f / path /到/ php / log /文件,这样你就可以实际看到这些php调用的输出.
>通常人们会收到此错误:file_get_contents(file:// input):无法打开流:找不到合适的包装器,它可以指示“file:// input”字符串的拼写错误或者allow_url_fopen被禁用的事实在PHP中(如果不确定,请参见#5)
>确保你的代码是正确的,并且我的意思是确保你没有输入不正确的参数和东西……在netbeans中不一定得到强调的东西.
>请记住,只有在PHP设置中将allow_url_fopen设置为true时,file_get_contents才有效.这是在php.ini中设置的东西,但您也可以在运行时通过在其他代码之前写下以下代码的内容来更改设置:

ini_set("allow_url_fopen", true);

标签:php,json,rest,curl,restful-architecture
来源: https://codeday.me/bug/20191004/1853524.html