blob: f08fc4e58248ff0c0044f26c3eb4cae0b1115abd (
plain)
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
38
|
--TEST--
DOM Document : save and saveXML
--CREDITS--
Sami Greenbury (sami@patabugen.co.uk)
# TestFest 2008
--SKIPIF--
<?php
require_once('skipif.inc');
?>
--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(151)
bool(true)
|