skyzer / google-reverse-image-search-scraper

Google reverse image search scraper in PHP
21 stars 9 forks source link

URL Scraping #1

Open ffranke opened 11 years ago

ffranke commented 11 years ago

Hey there! Thanks for the script!

Is it also possible to scrape the url, where the image was found in the first result? My Case is, that I have a lot of pictures, where I want to get some original urls for.

thanks! florian

cnelindia commented 10 years ago

Hello i have sam issue it's not working please help me

skyzer commented 10 years ago

Hello, I have redone it and now use simplehtmldom parser instead of xpath and everything is working. Here are some selectors for top stuff: $html->find('div#topstuff', 0); Titles: $whole_search_result_block->find('div#search div#ires ol#rso li.g h3.r'); Span texts: $whole_search_result_block->find('div#search div#ires ol#rso li.g span.st');

0xFA15E5EC commented 10 years ago

Hello Skyzer! Can you please push your changes using simplehtmldom?