我一直在尝试从此链接下载csv文件 http://www.google.com/trends/trendsReport?hl=en-US&q=nba&geo=US&date=today%207-d&cmpt=q&content=1&export=1
但一次又一次失败,我尝试了网上提供的大部分代码,也在stackexchange上,但没有一个让我工作正常,如果有人知道如何实现它,请在这里分享,因为我们大多数人都认为它有用
我也得到了一些建议,这些天它使用cookies。 另一个建议是应该使用谷歌帐户登录然后尝试,但不幸的是我都失败了。
否则我可能会出错。 我所做的一次有效试验就在这里。
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.google.com/accounts/ClientLogin?accountType=GOOGLE&Email=myemail@gmail.com&Passwd=mypass&service=trends&source=test-test-v1");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_MAXREDIRS, 20);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, '/var/www/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/var/www/cookies.txt');
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_setopt($ch, CURLOPT_URL, "http://www.google.com/trends/explore#q=nba&geo=US&date=today%207-d&cmpt=q");
$output = curl_exec($ch);
curl_close($ch);
echo $output;
?>
答案 0 :(得分:1)
例如
$page = file_get_contents('http://www.example.com/');
echo $page;