Jump to content

Mau-Ro

New Members
  • Posts

    1
  • Joined

  • Last visited

Mau-Ro's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. My script don't work correctly. get more results than expected. I' m finding a solutions by 1 week ! here an example by more than a week <?php include 'simple_html_dom.php'; $city = ('trento,rovereto'); $keyword = ('bar,hotel,cinema,geometra'); $array_city_pre = explode(',', $city); $array_keyword_pre = explode(',', $keyword); $list_pre = array("http://$city3.virgilio.it/ricercalocale/searchbu?ref=LOCAL_VIRGILIO&fz=0&usr=1&sgg=0&qs=&dove=&cl=022205&ll=&geoll=&viall=&stxt=$keyword3"); foreach ($array_city_pre as $city3) foreach ($array_keyword_pre as $keyword3) { $list_pre[] = "http://$city3.virgilio.it/ricercalocale/searchbu?ref=LOCAL_VIRGILIO&fz=0&usr=1&sgg=0&qs=&dove=&cl=022205&ll=&geoll=&viall=&stxt=$keyword3"; if (!empty($list_pre)) { foreach ($list_pre as $url_pre) { if (!empty($url_pre)) { $html_pre = file_get_html($url_pre); if (!empty($html_pre)) { foreach ($html_pre->find('//*[@id="search-content"]/section[2]/div/h1/span[1]') as $pre_page); { $page_1 = ($pre_page->innertext / 20); $page = ceil($page_1); $max_page = 100; if ($page >= $max_page) { $page_finale = $max_page; } if ($page < $max_page) { $page_finale = $page; } /*stampo un output per il debug*/ echo "citta:$city3 key:$keyword3 pagina:$page_finale</br>"; $list = array("http://$city3.virgilio.it/ricercalocale/searchbu?ref=LOCAL_VIRGILIO&fz=0&usr=1&sgg=0&qs=&dove=&cl=022205&ll=&geoll=&viall=&stxt=$keyword3&page=$number"); if (!empty($list)) { foreach (range(1, $page_finale) as $number) { $list[] = "http://$city3.virgilio.it/ricercalocale/searchbu?ref=LOCAL_VIRGILIO&fz=0&usr=1&sgg=0&qs=&dove=&cl=022205&ll=&geoll=&viall=&stxt=$keyword3&page=$number"; } if (!empty($list)) { foreach ($list as $url) { echo "$url</br>"; } } } } } } } } } ?> Here the output analysis of ' error http://www.federweb.com/NETBEANS/FSCRAPER/OUTPUT-en.html please give me some inspirations or help... very thanks ! Mauro IT
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.