Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
ломанная версия есть в природе?USEP2 актуально парсит
function curl( $url )
{
$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.4) Gecko/2008102920 AdCentriaIM/1.7 Firefox/3.0.4" );
curl_setopt( $ch, CURLOPT_REFERER, $url );
curl_setopt( $ch, CURLOPT_COOKIEJAR, "cook.txt" );
curl_setopt( $ch, CURLOPT_COOKIEFILE, "cook.txt" );
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
$result = curl_exec( $ch );
return $result;
}
function ghost( $urls )
{
$url = parse_url( trim( strip_tags( $urls ) ) );
return $url['host'];
}
$f = file( 'url.txt' );
foreach( $f as $u ) {
$urli = ghost( $u );
echo 'Получаем обратки для - ' . $urli . '<br />';
$url = curl( 'http://www.seositecheckup.com/First1000-url-' . $urli . '.htm' );
file_put_contents( $urli . '.csv', $url );
flush();
}
Как и любая системаа какие ограничения у yahoo по количеству запросов и т д??