php-src/ext/dom/tests/DOMDocument_savexml_basic.phpt
Max Semenik bd9f4fa676 Migrate skip checks to --EXTENSIONS--, p2
For rationale, see https://github.com/php/php-src/pull/6787

Make extension checks lowercase, add a special case for opcache
that has internal name not matching .so filename.

Extensions migrated in part 2:
* dom
* exif
* fileinfo
* ffi
2021-04-01 12:08:24 +01:00

37 lines
665 B
PHP

--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)