1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
--TEST--
DOM Document : save and saveXML
--CREDITS--
Sami Greenbury (sami@patabugen.co.uk)
# TestFest 2008
--EXTENSIONS--
dom
--FILE--
<?php
$xml = <<< EOXML
<?xml version="1.0" encoding="utf-8"?>
<courses>
<!-- Hello World! -->
<aNode>
<childNode>
<childlessNode />
</childNode>
</aNode>
</courses>
EOXML;
$dom = new DOMDocument();
$dom->loadXML($xml);
$root = $dom->documentElement;
$directory = __DIR__;
$filename = $directory."/tmp_dom_savexml".time();
var_dump($dom->save($filename));
$result = file_get_contents($filename);
var_dump($result == $dom->saveXML());
unlink($filename);
?>
--EXPECT--
int(181)
bool(true)
|