vote up 2 vote down star
1

Is there a PHP class/library that would allow me to query an XHTML document with CSS selectors? I need to scrape some pages for data that is very easily accessible if I could somehow use CSS selectors (jQuery has spoiled me!). Any ideas?

flag

6 Answers

vote up 0 vote down

I wrote mine, based on Mootools CSS selector engine http://selectors.svn.exyks.org/. it rely on simplexml extension ability (so, it's read-only)

link|flag
vote up 1 vote down

For jQuery users most interesting may be port of jQuery to PHP, which is phpQuery. Almost all sections of the library are ported. Additionally it contains WebBrowser plugin, which can be used for Web Scraping whole site's path/processes (eg accessing data available after logging in). It simply simulates web browser on the server (events and cookies too). Latest versions has experimental support for XML namespaces and CSS3 "|" selector.

link|flag
vote up 0 vote down

For document parsing I use DOM. This can quite easily solve your problem if you know the tag name (in this example "div"):

 $doc = new DOMDocument();
 $doc->loadHTML($html);

 $elements = $doc->getElementsByTagName("div");
 foreach ($elements as $e){
  if ($e->getAttribute("class")!="someclass") continue;

  //its a div.classname
 }

Not sure if DOM lets you get all elements of a document at once... you might have to do a tree traversal.

link|flag
vote up 4 vote down

XPath is a fairly standard way to access XML (and XHTML) nodes, and provides much more precision than CSS.

link|flag
+1 to bring to 0, but mainly because alternatives are always good. – eyelidlessness Nov 4 '08 at 7:05
wow, I was downvoted for this? I'm kinda interested as to why... – nickf Nov 4 '08 at 10:36
Wasn't me the OP! :-) I actually think this would be the best alternative since XHTML is just a subset of XML. – Wilco Nov 4 '08 at 16:54
Sometimes people here are rather random. I agreed on XPath being a better tool to use, if it's available. It's standard, more powerful and quite similar to CSS-selectors anyway. – troelskn Nov 5 '08 at 15:01
NickF, there's a nothing more "precise" about XPath... ejohn.org/blog/xpath-css-selectors There is one more option for selection, which is nice, but the CSS selectors are a lot cleaner, and understood by a wider audience. – altCognito Apr 4 at 18:37
show 2 more comments
vote up 6 vote down check

After googling further (initial results weren't very helpful) it seems there is actually a Zend Framework libary for this, along with some others:

link|flag
+1 phpQuery is absolutely wonderful. – Jonathan Sampson Jul 17 at 18:36

Your Answer

Get an OpenID
or

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