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?
|
10
|
|
|
|
|
|
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 |
||
|
|
|
|
The curl library allows you to download web pages. You should look into regular expressions for doing the scraping. |
||
|
|
|
|
Out of curiosity, what are you trying to scrape? |
||
|
|
|
|
Here's an OK tutorial (link removed, see below) on web scraping using (direct hyperlink removed due to malware warnings)
|
|||
|
|
|
|
I'd either use libcurl or Perl's LWP (libwww for perl). Is there a libwww for php? |
||
|
|
|
@Brian Warshaw: I'm actually looking to scrape BibleGateway.com as they don't provide an API to access verses for a web app I'm looking to create. |
||
|
|
|
|
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:
|
|||
|
|
|
I've been developing a scraper for StackOverflow so that we can track what changes affected our reputation score. It's quite hackish, but it works: http://modos.org/sof/?source=1 That should give you an idea of what it takes (CURL/regular expressions) to parse a page. |
||
|
|
|
|
Christopher, what are you talking about? He is simply asking about how to implement a web scraper. There was nothing in his comment to warrant those sorts of assumptions. |
||
|
|
|
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. |
||
|
|
|
|
Thanks to crono for kindly referring to my php|architect article. :) I am actually in the progress of writing a small book on the subject of web scraping with PHP. It will be published through php|architect and hopefully available before Q309. In the meantime, you can check out my blog at http://ishouldbecoding.com for the occasional post regarding web scraping. |
||
|
|
|
|
I'd like to recommend this class I recently came across. Simple HTML DOM Parser |
||
|
|
