Hoe kan ik hier een xmlbestand uit laten rollen met inspringingen (indentation)? Ik heb geen tidy.
<?php
if ($doc=domxml_open_file("test.xml")) {
$root = $doc->document_element();
$head = $doc->create_element("test");
$head = $root->append_child($head);
$title = $doc->create_element("hoi");
$title = $head->append_child($title);
$text = $doc->create_text_node("This is the title");
$text = $title->append_child($text);
$doc->dump_file("test.xml", false, false);
}
?>
test.xml
<?xml version="1.0"?>
<jo>
</jo>
<?php
if ($doc=domxml_open_file("test.xml")) {
$root = $doc->document_element();
$head = $doc->create_element("test");
$head = $root->append_child($head);
$title = $doc->create_element("hoi");
$title = $head->append_child($title);
$text = $doc->create_text_node("This is the title");
$text = $title->append_child($text);
$doc->dump_file("test.xml", false, false);
}
?>
test.xml
<?xml version="1.0"?>
<jo>
</jo>