up vote 70 down vote favorite
57
share [g+] share [fb]

Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me a lot of people have started and then abandoned a variety of parser projects.

Not interested in XML parsers (unless then can consume non-well formed HTML) or hacking it on my own with regular expressions.

Clarification of Intent: I'm not interested in filtering of HTML content, I'm interesting in extracting information from HTML documents.

link|improve this question

2  
(related) Best Methods to parse HTML – Gordon Feb 9 '11 at 8:21
feedback

protected by Bill the Lizard Sep 17 '10 at 17:12

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

11 Answers

up vote 62 down vote accepted

Just use DOMDocument->loadHTML() and be done with it. libxml's HTML parsing algorithm is quite good and fast, and contrary to popular belief, does not choke on malformed HTML.

link|improve this answer
5  
True. And it works with PHP's built-in XPath and XSLTProcessor classes, which are great for extracting content. – porneL Nov 27 '08 at 13:28
4  
For really mangled HTML, you can always run it through htmltidy before handing it off to DOM. Whenever I need to scrape data from HTML, I always use DOM, or at least simplexml. – Frank Farmer Oct 13 '09 at 0:41
2  
I've be re-researching this, and discovered that the problem I was having with DomDocument's loadXML method was due to an older linked version of libxml. I've been working on more up-to-date systems and DomDocument::loadHTML works like a charm. – Alan Storm Nov 21 '09 at 18:04
2  
Another thing with loading malformed HTML i that it might be wise to call libxml_use_internal_errors(true) to prevent warnings that will stop parsing. – Husky May 24 '10 at 17:51
2  
I have used DOMDocument to parse about 1000 html sources (in various languages encoded with different charsets) without any issues. You might run into encoding issues with this, but they aren't insurmountable. You need to know 3 things: 1) loadHTML uses meta tag's charset to determine encoding 2) #2 can lead to incorrect encoding detection if the html content doesn't include this information 3) bad UTF-8 characters can trip the parser. In such cases, use a combination of mb_detect_encoding() and Simplepie RSS Parser's encoding / converting / stripping bad UTF-8 characters code for workarounds. – Vasu Sep 19 '10 at 6:58
show 3 more comments
feedback

A little late to the party, but may I suggest phpQuery?

http://code.google.com/p/phpquery/

link|improve this answer
That looks pretty interesting, and doing an end run around DOM style parsing makes me happy to boot! – Alan Storm May 12 '10 at 20:48
1  
This beats simple_html_dom hands down. Same functionallity, and only 1.5mb of memory_get_peak_usage() ? No memory leaks! Awesome. You saved my life. – HappyDeveloper Mar 25 '11 at 22:12
feedback

Simple HTML Dom is a great open-source parser:

http://simplehtmldom.sourceforge.net/

It treats dom elements in an object-oriented way, and the new iteration has a lot of coverage for non-compliant code. There are also some great functions like you'd see in JavaScript, such as the "find" function, which will return all instances of elements of that tag name.

I've used this in a number of tools, testing it on many different types of web pages, and I think it works great.

link|improve this answer
feedback

PHP Simple DOM Parser looks good. I haven't tried using it yet though.

link|improve this answer
I'm gonna start using it tomorrow, and looks very nice, thx:) It support xpath and that's just nice for my needs. I also tried querypath.org but it fails on invalid html(it uses DOMDOcument to load the html...) – Quamis Sep 23 '09 at 11:40
1  
ive used this many times, very effective and easy to use. Will buy from again A++++, heh. – GrapeCamel Mar 21 '10 at 20:52
The ability to load invalid/broken HTML is the big argument for SimpleHTMLDOM. – Pekka Aug 21 '10 at 16:43
3  
Suggested third party alternatives to SimpleHtmlDom that actually use DOM instead of String Parsing: phpQuery, Zend_Dom, QueryPath and FluentDom. – Gordon Sep 9 '10 at 14:03
feedback

I've used HTML Purifier with a lot of success on a couple different projects.

link|improve this answer
A quick glances make that look more like a filtering library than a parser. Have you used the parser classes to actually extract information from documents? – Alan Storm Nov 15 '08 at 19:48
Ah, I answered before the edit. It originally was asking for a filtering library – MattBelanger Nov 16 '08 at 17:21
feedback

html5lib has a PHP version. (I don't know how up-to-date it is.)

link|improve this answer
feedback

You could try using something like HTML Tidy to cleanup any "broken" HTML and convert the HTML to XHTML, which you can then parse with a XML parser.

link|improve this answer
feedback

here is one more parser http://code.google.com/p/wiseparser/ it requires PHP5 and works in manner close to real browsers

link|improve this answer
This is a reimplementation of the Perl HTML::Treebuilder class in PHP. It should be helpful if you want that classes behaviour. – ftrotter May 18 '10 at 10:57
feedback

Symfony framework has bundles which can parse the HTML, you can use CSS style to select the DOMs instead of using XPath.

link|improve this answer
feedback

XML_HTMLSax is rather stable - even if it's not maintained any more. Another option could be to pipe you HTML through Html Tidy and then parse it with standard XML tools.

link|improve this answer
feedback

Another option you can try is QueryPath It's based off jQuery and used in Drupal.

link|improve this answer
feedback

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