SimpleXML or XMLReader? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:24:51Z http://stackoverflow.com/feeds/question/292935 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/292935/simplexml-or-xmlreader 1 SimpleXML or XMLReader? Thomaschaaf 2008-11-15T19:18:34Z 2008-11-15T23:07:22Z <p>which one of the two is more spread? I want to read out the version number from <a href="http://freshmeat.net/projects-xml/mysql/mysql.xml?branch_id=46519" rel="nofollow">http://freshmeat.net/projects-xml/mysql/mysql.xml?branch_id=46519</a> but I want to use the one which more people have.</p> <p>If you know another way to get the latest stable version number from mysql please tell me ;)</p> http://stackoverflow.com/questions/292935/simplexml-or-xmlreader/292975#292975 3 Answer by troelskn for SimpleXML or XMLReader? troelskn 2008-11-15T19:49:27Z 2008-11-15T19:49:27Z <p>For this kind of task, reading the document into a <a href="http://us2.php.net/domdocument" rel="nofollow"><code>DomDocument</code></a> and using <a href="http://docs.php.net/manual/it/domxpath.query.php" rel="nofollow"><code>DomXPath</code></a> is probably more suitable.</p> <p>To answer your question, both libraries (as well as <code>DomDocument</code> + <code>DomXPath</code>) are standard outfit with PHP5, so they would be equally fine choices.</p> http://stackoverflow.com/questions/292935/simplexml-or-xmlreader/293128#293128 0 Answer by Ciaran McNulty for SimpleXML or XMLReader? Ciaran McNulty 2008-11-15T22:10:05Z 2008-11-15T22:10:05Z <p>SimpleXML was introduced in PHP5 while XmlReader was only included by default in version 5.1, so the former is probably the best way to go:</p> <p>$struct = simplexml_load_string($xml);<br /> $version = (string)$struct->project->latest_release->latest_release_version;</p> <p>However if you're not doing any other XML processing and want to maximise compatibility you could just regex the XML:</p> <p>if(preg_match('/&lt;latest_release_version&gt;(.*)&lt;\/latest_release_version&gt;/', $xml, $matches)){<br /> $version = $matches[1];<br /> }</p> <p>It's messier than processing the XML properly but is probably faster and supported by nearly all PHP installations.</p> http://stackoverflow.com/questions/292935/simplexml-or-xmlreader/293200#293200 1 Answer by Phillip Oldham for SimpleXML or XMLReader? Phillip Oldham 2008-11-15T23:07:22Z 2008-11-15T23:07:22Z <p>It has to be SimpleXML. It <a href="http://uk3.php.net/manual/en/simplexml.installation.php" rel="nofollow">is enabled by default</a>, is quicker to load XML documents than the Dom methods, has a smaller memory foot-print than the Dom methods, and has much simpler <a href="http://uk3.php.net/manual/en/function.simplexml-element-xpath.php" rel="nofollow">xpath methods</a> than the Dom methods:</p> <pre><code>$xml = simplexml_load_file( 'http://freshmeat.net/projects-xml/mysql/mysql.xml?branch_id=46519' ); $result = $xml-&gt;xpath('//latest_release/latest_release_version'); // or '//latest_release/*' if you'd rather loop through all release information. while(list( , $node) = each($result)) echo $node, "\n"; </code></pre>