Screen Scraping with PHP and XPath - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T04:11:43Zhttp://stackoverflow.com/feeds/question/420304http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath1Screen Scraping with PHP and XPathesryl2009-01-07T13:31:48Z2009-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>
<div class="info">
<h5>title</h5>
text <a href="somelink">anchor</a>
</div>
</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#4203232Answer by Ciaran McNulty for Screen Scraping with PHP and XPathCiaran McNulty2009-01-07T13:37:29Z2009-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->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#4203280Answer by gms8994 for Screen Scraping with PHP and XPathgms89942009-01-07T13:38:49Z2009-01-07T13:38:49Z<p>You'll need to make sure your xpath query 'ends' at the <code><div class="info"></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#4203490Answer by esryl for Screen Scraping with PHP and XPathesryl2009-01-07T13:47:11Z2009-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, "<br />\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#4203760Answer by phihag for Screen Scraping with PHP and XPathphihag2009-01-07T13:54:02Z2009-01-07T13:54:02Z<p><code>div/node()</code> should do the trick.</p>
<p>Example input:</p>
<pre><code><div class="info">
some <h5>title</h5> text <a href="somelink">anchor</a> more text
</div>
</code></pre>
<p>Example XSLT stylesheet:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<newtag>
<xsl:copy-of select="div/node()"/>
</newtag>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Example output:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<newtag> some<h5>title</h5> text <a href="somelink">anchor</a> more text</newtag>
</code></pre>
http://stackoverflow.com/questions/420304/screen-scraping-with-php-and-xpath/423713#4237130Answer by null for Screen Scraping with PHP and XPathnull2009-01-08T09:42:25Z2009-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->node->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><div class="info">
<__toString()> </__toString()>
<h5>title</h5>
<__toString()> text </__toString()>
<a href="somelink">anchor</a>
<__toString()> </__toString()>
</div>
</code></pre>
<p>Where the call to <code>$element->nodeValue</code> is like calling <code>$element->__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#4317750Answer by Dimitre Novatchev for Screen Scraping with PHP and XPathDimitre Novatchev2009-01-10T21:14:59Z2009-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><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="div[@class='info']">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p><strong>when applied on this xml document</strong>:</p>
<pre><code><html>
<body>
<div class="info">
<h1>title1</h1> text1
<a href="somelink1">anchor1</a>
</div>
Something else here
<div class="info">
<h2>title2</h2> text2
<a href="somelink2">anchor2</a>
</div>
Something else here
<div class="info">
<h3>title3</h3> text3
<a href="somelink3">anchor3</a>
</div>
</body>
</html>
</code></pre>
<p><strong>produces the wanted result</strong>:</p>
<pre><code><div class="info">
<h1>title1</h1> text1
<a href="somelink1">anchor1</a>
</div>
Something else here
<div class="info">
<h2>title2</h2> text2
<a href="somelink2">anchor2</a>
</div>
Something else here
<div class="info">
<h3>title3</h3> text3
<a href="somelink3">anchor3</a>
</div>
</code></pre>