What built-in PHP functions are useful for web scraping? What are some good resources (web or print) for getting up to speed on web scraping with PHP?
feedback
|
|
There is a Book "Webbots, Spiders, and Screen Scrapers: A Guide to Developing Internet Agents with PHP/CURL" on this topic - see a review here PHP-Architect covered it in a well written article in the December 2007 Issue by Matthew Turland | |||
|
feedback
|
|
Scraping generally encompasses 3 steps:
To accomplish steps 1 and 2, below is a simple php class which uses Curl to fetch webpages using either GET or POST. After you get the HTML back, you just use Regular Expressions to accomplish step 3 by parsing out the text you'd like to scrape. For regular expressions, my favorite tutorial site is the following: Regular Expressions Tutorial My Favorite program for working with RegExs is Regex Buddy. I would advise you to try the demo of that product even if you have no intention of buying it. It is an invaluable tool and will even generate code for your regexs you make in your language of choice (including php). Usage:
PHP Class:
| |||||||||
feedback
|
|
I'd like to recommend this class I recently came across. Simple HTML DOM Parser | |||||
feedback
|
|
ScraperWiki is a pretty interesting project. Helps you build scrapers online in Python, Ruby or PHP - i was able to get a simple attempt up in a few minutes. | |||
|
feedback
|
|
Here's an OK tutorial (link removed, see below) on web scraping using (direct hyperlink removed due to malware warnings)
| ||||
|
feedback
|
|
The curl library allows you to download web pages. You should look into regular expressions for doing the scraping. | |||||
feedback
|
|
Out of curiosity, what are you trying to scrape? | |||
|
feedback
|
|
I'd either use libcurl or Perl's LWP (libwww for perl). Is there a libwww for php? | |||
feedback
|
|
If you need something that is easy to maintain, rather than fast to execute, it could help to use a scriptable browser, such as SimpleTest's. | |||
|
feedback
|
It sounds like you may be trying to 'hotlink' rather than scrape, i.e. update in realtime based on their site content? This tutorial is quite good: http://www.merchantos.com/makebeta/php/scraping-links-with-php/ You might also want to look at Prowser. | |||
|
feedback
|
|
Scraper class from my framework:
| |||
|
feedback
|
|
here is another one: a simple PHP Scraper without Regex. | |||
|
feedback
|