Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f055ac1baf83fd14827d33551c35bf9c > files > 6

php-pear-XML_Beautifier-1.2.2-3.mga4.noarch.rpm

<?PHP
/**
* XML_Beautifier example 4
*
* This example displays the 'normalizeComments'
* option. If it is set to true, multiline comments will
* be replaced by a single line comment.
*
* @author	Stephan Schmidt <schst@php.net>
*/
	error_reporting( E_ALL );

    require_once 'XML/Beautifier.php';
    
    $options = array(
                        "normalizeComments" => true,
                    );
    
    $fmt = new XML_Beautifier($options);
    $result = $fmt->formatFile('test.xml', 'test2.xml');

    echo "<h3>Original file</h3>";
    echo "<pre>";
    echo htmlspecialchars(implode("",file('test.xml')));
    echo "</pre>";
        
    echo    "<br><br>";
    
    echo "<h3>Beautified file</h3>";
    echo "<pre>";
    echo htmlspecialchars(implode("",file('test2.xml')));
    echo "</pre>";
?>