PHP HTML DOM Parser

StackOverflowNewbie picture StackOverflowNewbie · Dec 2, 2010 · Viewed 17.2k times · Source

Possible Duplicate:
How to parse and process HTML with PHP?

I'm looking into HTML DOM parsers for PHP. I've found PHP Simple HTML DOM Parser. Are there any others I should be looking at?

Answer

Byron Whitlock picture Byron Whitlock · Dec 2, 2010

Yes. Simple html doc is fine, but an order of magnitude slower than the built in dom parser.

$dom = new DOMDocument();
@$dom->loadHTML($html);
$x = new DOMXPath($dom); 

foreach($x->query("//a") as $node) 
{
    $data['dom']['href'][] = $node->getAttribute("href");
} 

Use that.