php – 等效于file_get_contents()与CURL?

前端之家收集整理的这篇文章主要介绍了php – 等效于file_get_contents()与CURL?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从这个URL获取一些 JSON数据:
$url = 'http://site.com/search.PHP?term=search term here';
$result = json_decode ( file_get_contents($url) );

但是,客户端的webhost已禁用allow_url_fopen设置,因此上述代码不起作用.

上面的行的等效代码是什么?基本上,搜索字词需要通过$_GET提交到网址.

喜欢这个:
$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 );
原文链接:https://www.f2er.com/php/132684.html

猜你在找的PHP相关文章