php-src/ext/simplexml/tests/bug27010.phpt
Rob Richards a3e906515c add unicode support
update tests (binary string must be passed to simplexml_load_string)
2006-08-08 20:52:45 +00:00

35 lines
785 B
PHP
Executable File

--TEST--
Bug #27010 (segfault and node text not displayed when returned from children())
--SKIPIF--
<?php if (!extension_loaded("simplexml")) print "skip"; ?>
--FILE--
<?php
$xml=b<<<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===