Formattazione Output XML con PHP
Funzione molto utile per formattare il testo XML in uscita (ad esempio da DomDocument). function formatXmlString($xml, $indentBase = 0, $indentString = ‘ ‘) { // add marker linefeeds to aid the pretty-tokeniser (adds a linefeed between all tag-end boundaries) $xml = preg_replace(‘/(>)(<)(\/*)/’, “$1\n$2$3”, $xml); // now indent the tags $token = strtok($xml, “\n”); $result = … [Read more…]