芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/doc/XML_Beautifier/examples/example2.php
*/ error_reporting( E_ALL ); $xmlString = '
foobar
'; require_once 'XML/Beautifier.php'; $fmt = new XML_Beautifier(); $result = $fmt->formatString($xmlString); echo "
Original string
"; echo "
"; echo htmlspecialchars($xmlString); echo "
"; echo "
"; echo "
Beautified string
"; echo "
"; echo htmlspecialchars($result); echo "
"; ?>