我希望通过简单的html dom获取谷歌搜索结果,但不能正常工作
require_once('simple_html_dom.php');
$q = $_GET['q'];
$url = 'http://google.com/search?hl=en&as_epq='.urlencode($q).'&cr=countryIR&as_qdr=all&as_occt=any&safe=active';
echo file_get_html($url);
此代码在我的localhost中有效但在主机
中无效