chregu          Mon Oct 27 06:34:46 2003 EDT

  Added files:                 
    /php-src/ext/simplexml/tests        book.xml simplexml_import_dom.phpt 
  Log:
  added interop test
  

Index: php-src/ext/simplexml/tests/book.xml
+++ php-src/ext/simplexml/tests/book.xml
<books>
 <book>
  <title>The Grapes of Wrath</title>
  <author>John Steinbeck</author>
 </book>
 <book>
  <title>The Pearl</title>
  <author>John Steinbeck</author>
 </book>
</books>

Index: php-src/ext/simplexml/tests/simplexml_import_dom.phpt
+++ php-src/ext/simplexml/tests/simplexml_import_dom.phpt
--TEST--
Interop: simplexml_import_dom
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
<?php if (!extension_loaded("dom")) print "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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to