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