vote up 6 vote down star
8

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.

flag

9 Answers

vote up 7 vote down check

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|flag
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
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 at 0:41
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 at 18:04
vote up 0 vote down

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

link|flag
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 – mabwi Nov 16 '08 at 17:21
vote up 0 vote down

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|flag
vote up 2 vote down

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|flag
vote up 1 vote down

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|flag
vote up 3 vote down

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

link|flag
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 at 11:40
vote up 0 vote down

Any for PHP 4+ ? These all seem to be 5+ :(

link|flag
vote up 0 vote down

stop using PHP4!!!

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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