【发布时间】:2011-11-14 20:31:37
【问题描述】:
file_get_contents 在 url 上返回一个空字符串:http://thepiratebay.org/search/a
当它显然不为空时。 也试过 curl,这是我的代码
$ch = curl_init();
$cookieFile = 'cookies.txt';
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookieFile);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_TIMEOUT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
$url = 'http://thepiratebay.org/search/a';
curl_setopt($ch, CURLOPT_URL,$url);
$html = curl_exec ($ch);
var_dump($html);
$html = file_get_contents($url);
var_dump($html);
curl_close ($ch); unset($ch);
输出是:
string(143) "HTTP/1.1 200 OK
X-Powered-By: PHP/5.3.8
Content-type: text/html
Content-Length: 0
Date: Mon, 14 Nov 2011 20:27:01 GMT
Server: lighttpd
"
string(0) ""
如果我通过删除 2 个字符将 url 更改为“http://thepiratebay.org/search”,一切正常,我得到了很好的回应。
有什么想法吗?
【问题讨论】: