--TEST--
Test: Xinclude and Streams
--EXTENSIONS--
dom
--SKIPIF--
--FILE--
loadXML($data);
$dom->xinclude();
print $dom->saveXML()."\n";
foreach ($dom->documentElement->childNodes as $node) {
print $node->nodeName."\n";
}
$dom = Dom\XMLDocument::createFromString($data);
$dom->xinclude();
print $dom->saveXML()."\n";
foreach ($dom->documentElement->childNodes as $node) {
print $node->nodeName."\n";
}
?>
--EXPECTF--
The Grapes of Wrath
John Steinbeck
The Pearl
John Steinbeck
#text
book
book
#text
The Grapes of Wrath
John Steinbeck
The Pearl
John Steinbeck
#text
book
book
#text