vote up 8 vote down star
10

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?

flag

12 Answers

vote up 6 vote down check

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

link|flag
vote up 1 vote down

The curl library allows you to download web pages. You should look into regular expressions for doing the scraping.

link|flag
vote up 0 vote down

file_get_contents() can take a remote URL and give you the source. You can then use regular expressions (with the Perl-compatible functions) to grab what you need.

Out of curiosity, what are you trying to scrape?

link|flag
vote up 2 vote down

Here's an OK tutorial (link removed, see below) on web scraping using cURL and file_get_contents. Besure to read the next few parts as well.

(direct hyperlink removed due to malware warnings)

http://www.oooff.com/php-scripts/basic-php-scraped-data-parsing/basic-php-data-parsing.php

link|flag
vote up 0 vote down

I'd either use libcurl or Perl's LWP (libwww for perl). Is there a libwww for php?

link|flag
If you're going to use LWP, use WWW::Mechanize, which wraps it with handy helper functions. – Andy Lester Sep 24 '08 at 5:33
vote up 0 vote down

@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.

link|flag
vote up 11 vote down

Scraping generally encompasses 3 steps:

  • first you GET or POST your request to a specified URL
  • next you receive the html that is returned as the response
  • finally you parse out of that html the text you'd like to scrape.

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:



$curl = new Curl();
$html = $curl->get("http://www.google.com");

// now, do your regex work against $html
PHP Class:


<?php

class Curl
{   	

    public $cookieJar = "";

    public function __construct($cookieJarFile = 'cookies.txt') {
        $this->cookieJar = $cookieJarFile;
    }

    function setup()
    {


        $header = array();
        $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
        $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
        $header[] =  "Cache-Control: max-age=0";
        $header[] =  "Connection: keep-alive";
        $header[] = "Keep-Alive: 300";
        $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
        $header[] = "Accept-Language: en-us,en;q=0.5";
        $header[] = "Pragma: "; // browsers keep this blank.


        curl_setopt($this->curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7');
        curl_setopt($this->curl, CURLOPT_HTTPHEADER, $header);
    	curl_setopt($this->curl,CURLOPT_COOKIEJAR, $cookieJar); 
    	curl_setopt($this->curl,CURLOPT_COOKIEFILE, $cookieJar);
    	curl_setopt($this->curl,CURLOPT_AUTOREFERER, true);
    	curl_setopt($this->curl,CURLOPT_FOLLOWLOCATION, true);
    	curl_setopt($this->curl,CURLOPT_RETURNTRANSFER, true);	
    }


    function get($url)
    { 
    	$this->curl = curl_init($url);
    	$this->setup();

    	return $this->request();
    }

    function getAll($reg,$str)
    {
    	preg_match_all($reg,$str,$matches);
    	return $matches[1];
    }

    function postForm($url, $fields, $referer='')
    {
    	$this->curl = curl_init($url);
    	$this->setup();
    	curl_setopt($this->curl, CURLOPT_URL, $url);
    	curl_setopt($this->curl, CURLOPT_POST, 1);
    	curl_setopt($this->curl, CURLOPT_REFERER, $referer);
    	curl_setopt($this->curl, CURLOPT_POSTFIELDS, $fields);
    	return $this->request();
    }

    function getInfo($info)
    {
    	$info = ($info == 'lasturl') ? curl_getinfo($this->curl, CURLINFO_EFFECTIVE_URL) : curl_getinfo($this->curl, $info);
    	return $info;
    }

    function request()
    {
    	return curl_exec($this->curl);
    }
}

?>

link|flag
This is great, just what I've been looking for. Do you have any other breakdown or improvements to the class? – Phill Pafford Oct 12 at 15:43
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
I'm still waiting for the "legitimate reuse" bit in my earlier comment. That the questioner runs an internet-based marketing company does not inspire confidence. – Christopher Mahan Sep 29 '08 at 16:47
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I'd like to recommend this class I recently came across. Simple HTML DOM Parser

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.