Arqin
Профессор
- Регистрация
- 17 Мар 2009
- Сообщения
- 185
- Реакции
- 37
Ну раз денвер, то еще проще... скачай Для просмотра ссылки Войди или Зарегистрируйся пакет расширений и всё =)
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.
ini_set('max_execution_time', '1000');
<?
ini_set('max_execution_time', '1000');
//64 max
$max_count = 20;
$result_url = "";
$pause = 5;
$keywords=file("keys.txt");
$keywords_count = count($keywords);
for ($i=0;$i<$keywords_count;$i++)
{
$keyword=trim($keywords[$i]);
echo $keyword."<br>";
$count=0;
while($count<$max_count){
$url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&hl=ru&rsz=large&start=".$count."&q=".urlencode($keyword);
$body = file_get_contents($url);
$json = json_decode($body);
//echo '<pre>';
//print_r($json);
//echo '</pre>';
foreach($json->responseData->results as $value){
$result_url .= $value->url."\r\n";
$count+=1;
if($count>=$max_count)break;
}
}
flush();
//тормоз на $pause сек.
sleep($pause);
}
$file = fopen("result.txt","a+");
fputs($file, $result_url);
fclose($file);
?>
есть функция set_time_limit() и не надо в php.ini ничего правитьограничение времени выполнения скрипта изменяется в php.ini или добавить в скрипт
если нет curl тогда с file_get_contentsPHP:ini_set('max_execution_time', '1000');
*** скрытое содержание ***PHP:<? ini_set('max_execution_time', '1000'); //64 max $max_count = 20; $result_url = ""; $pause = 5; $keywords=file("keys.txt"); $keywords_count = count($keywords); for ($i=0;$i<$keywords_count;$i++) { $keyword=trim($keywords[$i]); echo $keyword."<br>"; $count=0; while($count<$max_count){ $url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&hl=ru&rsz=large&start=".$count."&q=".urlencode($keyword); $body = file_get_contents($url); $json = json_decode($body); //echo '<pre>'; //print_r($json); //echo '</pre>'; foreach($json->responseData->results as $value){ $result_url .= $value->url."\r\n"; $count+=1; if($count>=$max_count)break; } } flush(); //тормоз на $pause сек. sleep($pause); } $file = fopen("result.txt","a+"); fputs($file, $result_url); fclose($file); ?>