diff options
Diffstat (limited to 'ext/simplexml/tests/simplexml_import_dom.phpt')
-rw-r--r-- | ext/simplexml/tests/simplexml_import_dom.phpt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/simplexml/tests/simplexml_import_dom.phpt b/ext/simplexml/tests/simplexml_import_dom.phpt new file mode 100644 index 0000000..e108e05 --- /dev/null +++ b/ext/simplexml/tests/simplexml_import_dom.phpt @@ -0,0 +1,22 @@ +--TEST-- +SimpleXML [interop]: simplexml_import_dom +--SKIPIF-- +<?php if (!extension_loaded("simplexml")) die("skip"); ?> +<?php if (!extension_loaded("dom")) die("skip dom extension not loaded"); ?> +--FILE-- +<?php +$dom = new domDocument; +$dom->load(dirname(__FILE__)."/book.xml"); +if(!$dom) { + echo "Error while parsing the document\n"; + exit; +} +$s = simplexml_import_dom($dom); +$books = $s->book; +foreach ($books as $book) { + echo "{$book->title} was written by {$book->author}\n"; +} +?> +--EXPECT-- +The Grapes of Wrath was written by John Steinbeck +The Pearl was written by John Steinbeck |