mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
bd9f4fa676
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
28 lines
491 B
PHP
28 lines
491 B
PHP
--TEST--
|
|
Interop Test: Import from SimpleXML
|
|
--EXTENSIONS--
|
|
dom
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
$s = simplexml_load_file(__DIR__."/book.xml");
|
|
if(!$s) {
|
|
echo "Error while loading the document\n";
|
|
exit;
|
|
}
|
|
$dom = dom_import_simplexml($s);
|
|
print $dom->ownerDocument->saveXML();
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0"?>
|
|
<books>
|
|
<book>
|
|
<title>The Grapes of Wrath</title>
|
|
<author>John Steinbeck</author>
|
|
</book>
|
|
<book>
|
|
<title>The Pearl</title>
|
|
<author>John Steinbeck</author>
|
|
</book>
|
|
</books>
|