php-src/ext/dom/tests/dom_xinclude.phpt
Christian Stocker 0d59b3dda6 xinclude test
2003-10-27 15:32:44 +00:00

23 lines
570 B
PHP

--TEST--
Test: Xinclude and Streams
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new domdocument;
$dom->load(dirname(__FILE__)."/xinclude.xml");
$dom->xinclude();
print $dom->saveXML();
--EXPECT--
<?xml version="1.0"?>
<foo xmlns:xi="http://www.w3.org/2001/XInclude">
<book xml:base="compress.zlib://ext/dom/tests/book.xml">
<title>The Grapes of Wrath</title>
<author>John Steinbeck</author>
</book><book xml:base="compress.zlib://ext/dom/tests/book.xml">
<title>The Pearl</title>
<author>John Steinbeck</author>
</book>
</foo>