--TEST-- SimpleXML [interop]: simplexml_import_dom (new DOM) --EXTENSIONS-- simplexml dom --FILE-- book; foreach ($books as $book) { echo "{$book->title} was written by {$book->author}\n"; } $s->book[0]->title = "test"; echo $dom->saveXML(); ?> --EXPECT-- The Grapes of Wrath was written by John Steinbeck The Pearl was written by John Steinbeck test John Steinbeck The Pearl John Steinbeck