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) ""
если я изменю URL на "http://thepiratebay.org/search", удалив 2 символа, все в порядке, и я получаю хорошийответ.
есть идеи?