helly Thu Jan 22 16:55:10 2004 EDT
Added files:
/php-src/ext/simplexml/tests bug27010.phpt
Log:
Add new test
http://cvs.php.net/co.php/php-src/ext/simplexml/tests/bug27010.phpt?r=1.1&p=1
Index: php-src/ext/simplexml/tests/bug27010.phpt
+++ php-src/ext/simplexml/tests/bug27010.phpt
--TEST--
#27010: segfault and node text not displayed when returned from children()
--FILE--
<?php
$xml=<<<EOF
<drinks xmlns:hot="http://www.example.com/hot">
<hot:drink><hot:name>Coffee</hot:name></hot:drink>
<hot:drink><hot:name>Tea</hot:name></hot:drink>
<drink><name>Cola</name></drink>
<drink><name>Juice</name></drink>
</drinks>
EOF;
$sxe = simplexml_load_string($xml);
foreach ($sxe as $element_name => $element) {
print "$element_name is $element->name\n";
}
foreach ($sxe->children('http://www.example.com/hot') as $element_name => $element) {
print "$element_name is $element->name\n";
}
?>
===DONE===
--EXPECT--
drink is Cola
drink is Juice
drink is Coffee
drink is Tea
===DONE===
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php