Screen Scraping with PHP and XPath - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:11:43Z http://stackoverflow.com/feeds/question/420304 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath 1 Screen Scraping with PHP and XPath esryl 2009-01-07T13:31:48Z 2009-01-10T21:14:59Z <p>Does anyone know how to maintain text formatting when using XPath to extract data?</p> <p>I am currently extracting all blocks</p> <p><code> &lt;div class="info"&gt; &lt;h5&gt;title&lt;/h5&gt; text &lt;a href="somelink"&gt;anchor&lt;/a&gt; &lt;/div&gt; </code></p> <p>from a page. The problem is when I access the nodeValue, I can only get plain text. How can I capture the contents including formatting, i.e. the h5 and a still in the code?</p> <p>Thanks in advance. I have searched every combination imaginable on Google and no luck.</p> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/420323#420323 2 Answer by Ciaran McNulty for Screen Scraping with PHP and XPath Ciaran McNulty 2009-01-07T13:37:29Z 2009-01-07T13:37:29Z <p>If you have it as a DomElement $element as part of a DomDocument $dom then you will want to do something like:</p> <pre><code>$string = $dom-&gt;saveXml($element); </code></pre> <p>The NodeValue of an element is really the textual value, not the structured XML.</p> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/420328#420328 0 Answer by gms8994 for Screen Scraping with PHP and XPath gms8994 2009-01-07T13:38:49Z 2009-01-07T13:38:49Z <p>You'll need to make sure your xpath query 'ends' at the <code>&lt;div class="info"&gt;</code>. However, because of the way XPath works, you'll still get all of the 'subtags' in separate nodes. You'll just need to concatenate them.</p> <p>You could also use XPath's <a href="http://www.w3schools.com/Xpath/xpath_functions.asp" rel="nofollow">join</a> functionality, though, as I haven't used it, I can't say what problems you might run in to.</p> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/420349#420349 0 Answer by esryl for Screen Scraping with PHP and XPath esryl 2009-01-07T13:47:11Z 2009-01-07T13:47:11Z <pre> <code> fetch('http://www.imdb.com/title/tt0133093/combined')) { $dom = new DomDocument(); $dom->loadHTML($snooper->results); $x = new DomXPath($dom); $nodes = $x->query('//*[@class="info"]'); foreach($nodes as $node) { echo $node->nodeValue, "&lt;br /&gt;\n"; } } ?> </code> </pre> <p>this is the actual code i am working on right now, as proof of concept. only stumbled across xpath and snoopy this morning.</p> <p>thanks for the really fast responses. looking into both further right now, to see if i can make them work and output the captured contents with formatting.</p> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/420376#420376 0 Answer by phihag for Screen Scraping with PHP and XPath phihag 2009-01-07T13:54:02Z 2009-01-07T13:54:02Z <p><code>div/node()</code> should do the trick.</p> <p>Example input:</p> <pre><code>&lt;div class="info"&gt; some &lt;h5&gt;title&lt;/h5&gt; text &lt;a href="somelink"&gt;anchor&lt;/a&gt; more text &lt;/div&gt; </code></pre> <p>Example XSLT stylesheet:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="/"&gt; &lt;newtag&gt; &lt;xsl:copy-of select="div/node()"/&gt; &lt;/newtag&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Example output:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;newtag&gt; some&lt;h5&gt;title&lt;/h5&gt; text &lt;a href="somelink"&gt;anchor&lt;/a&gt; more text&lt;/newtag&gt; </code></pre> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/423713#423713 0 Answer by null for Screen Scraping with PHP and XPath null 2009-01-08T09:42:25Z 2009-01-08T09:42:25Z <p>I would like to add to Ciaran McNulty answer</p> <p>You can do the same in SimpleXml like:</p> <pre><code>$simplexml-&gt;node-&gt;asXml(); // saveXml() is now an alias </code></pre> <p>And to expand on the quote</p> <blockquote> <p>The NodeValue of an element is really the textual value, not the structured XML.</p> </blockquote> <p>You can think of your node as follows:</p> <pre><code>&lt;div class="info"&gt; &lt;__toString()&gt; &lt;/__toString()&gt; &lt;h5&gt;title&lt;/h5&gt; &lt;__toString()&gt; text &lt;/__toString()&gt; &lt;a href="somelink"&gt;anchor&lt;/a&gt; &lt;__toString()&gt; &lt;/__toString()&gt; &lt;/div&gt; </code></pre> <p>Where the call to <code>$element-&gt;nodeValue</code> is like calling <code>$element-&gt;__toString()</code> which would only get the __toString() elements. The imaginary <code>__toString()</code> I created is officially defined as an <a href="http://us.php.net/manual/en/domxml.constants.php" rel="nofollow"><code>XML_TEXT_NODE</code></a>. </p> http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/431775#431775 0 Answer by Dimitre Novatchev for Screen Scraping with PHP and XPath Dimitre Novatchev 2009-01-10T21:14:59Z 2009-01-10T21:14:59Z <p><strong>The <a href="http://www.w3.org/TR/xpath" rel="nofollow">XPath language</a> is designed to be embedded in another language (such as DOM API, XSLT, XQuery, ...) and cannot be used standalone</strong>. The original question does not specify what is the desired embedding.</p> <p><strong>Below is a very simple and short solution when XPath is embedded in <a href="http://www.w3.org/TR/xslt" rel="nofollow">XSLT</a></strong>.</p> <p><strong>This transformation</strong>:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:output omit-xml-declaration="yes"/&gt; &lt;xsl:template match="div[@class='info']"&gt; &lt;xsl:copy-of select="."/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p><strong>when applied on this xml document</strong>:</p> <pre><code>&lt;html&gt; &lt;body&gt; &lt;div class="info"&gt; &lt;h1&gt;title1&lt;/h1&gt; text1 &lt;a href="somelink1"&gt;anchor1&lt;/a&gt; &lt;/div&gt; Something else here &lt;div class="info"&gt; &lt;h2&gt;title2&lt;/h2&gt; text2 &lt;a href="somelink2"&gt;anchor2&lt;/a&gt; &lt;/div&gt; Something else here &lt;div class="info"&gt; &lt;h3&gt;title3&lt;/h3&gt; text3 &lt;a href="somelink3"&gt;anchor3&lt;/a&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><strong>produces the wanted result</strong>:</p> <pre><code>&lt;div class="info"&gt; &lt;h1&gt;title1&lt;/h1&gt; text1 &lt;a href="somelink1"&gt;anchor1&lt;/a&gt; &lt;/div&gt; Something else here &lt;div class="info"&gt; &lt;h2&gt;title2&lt;/h2&gt; text2 &lt;a href="somelink2"&gt;anchor2&lt;/a&gt; &lt;/div&gt; Something else here &lt;div class="info"&gt; &lt;h3&gt;title3&lt;/h3&gt; text3 &lt;a href="somelink3"&gt;anchor3&lt;/a&gt; &lt;/div&gt; </code></pre>