file_get_contents的替代方法,用于从POST URL读取JSON数据?

时间:2012-10-29 08:37:44

标签: php json

我将POST网址设为“ http://domain/mycontroller/function/info.json ”,如何阅读“info.json”,我正在使用{{1但是有没有替代方法可以阅读file_get_contents("php://input")数据或“JSON”。

2 个答案:

答案 0 :(得分:0)

如果它在本地机器上你可以使用

 fopen 
 fclose

http://php.net/manual/bg/function.fopen.php

如果它可以在远程机器上使用

 curl

http://php.net/manual/en/book.curl.php

答案 1 :(得分:0)

的速度你可以使用fopen或curl

加速

curl>>>fopen>file_get_contents