我正在尝试从如下网址中获取一些JSON数据:

$url = 'http://site.com/search.php?term=search term here';
$result = json_decode ( file_get_contents($url) );

但是,客户端的虚拟主机已禁用allow_url_fopen设置,因此上面的代码不起作用。

上面几行的等效代码是什么?基本上,搜索词需要通过$_GET提交到url。

最佳答案

像这样:

$url = 'http://site.com/search.php?term=search term here';

$rCURL = curl_init();

curl_setopt($rCURL, CURLOPT_URL, $url);
curl_setopt($rCURL, CURLOPT_HEADER, 0);
curl_setopt($rCURL, CURLOPT_RETURNTRANSFER, 1);

$aData = curl_exec($rCURL);

curl_close($rCURL);

$result = json_decode ( $aData );

关于php - 与CURL等效于file_get_contents()吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6595041/

10-12 23:59