blob: 444ec3a95ffd93ebf7f6a78f2cb14aa9315f14e4 [file] [log] [blame]
<?php
require 'tutorial_autoload.php';
$document = new ezcDocumentEzXml();
$document->loadString( '<?xml version="1.0"?>
<section xmlns="http://ez.no/namespaces/ezpublish3">
<header>Paragraph</header>
<paragraph>Some content...</paragraph>
</section>' );
$docbook = $document->getAsDocbook();
echo $docbook->save();
?>