$content = file_get_contents('http://wordstat.yandex.ru/?text=' . 'php');
Получаю капчу. В браузере ее нет.
Пробую курл вот так:
$ch = curl_init(); // initialize curl handle
curl_setopt($ch, CURLOPT_URL, 'http://wordstat.yandex.ru/?text=php'); // set url to post to
curl_setopt($ch, CURLOPT_FAILONERROR, 1); // Fail on errors
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable
curl_setopt($ch, CURLOPT_TIMEOUT, 15); // times out after 15s
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8');
$content = curl_exec($ch);
curl_close($ch);
Та же хуйня. Я ообще нуб во всяких курлах и прочих. Как открыть так же как и в браузере, то бишь без капчи.