我想用文件获取内容功能抓取一些谷歌页面:
$encoded='http://www.google.co.il/#hl=en&biw=1440&bih=799&sclient=psy-ab&q=site:'.urlencode("http://stackoverflow.com/");
echo file_get_contents($encoded);
当我这样做时:
回声$编码;
我明白了:
http://www.google.co.il/#hl=en&biw=1440&bih=799&sclient=psy-ab&q=site:http%3A%2F%2Fstackoverflow.com%2F
当我把它放在网址中时..我得到了我想要的页面
但是当我使用该功能时,我只是得到了谷歌主页..为什么会发生这种情况?