Prettyprint xml in PHP
Posted by Kelvin on 04 Dec 2010 at 12:05 pm | Tagged as: PHP
Ever wanted to format your XML nicely? Use the SimpleDOM class.
Usage is like so:
include "SimpleDOM.php"; $xml = "<foo><bar>car</bar></foo>"; $dom = simpledom_load_string($xml); $xml = $dom->asPrettyXML(); echo $xml;
Produces:
<?xml version="1.0"?> <foo> <bar>car</bar> </foo>