diff options
Diffstat (limited to 'ext/simplexml/tests/bug27010.phpt')
-rwxr-xr-x | ext/simplexml/tests/bug27010.phpt | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/ext/simplexml/tests/bug27010.phpt b/ext/simplexml/tests/bug27010.phpt deleted file mode 100755 index dffb7476b6..0000000000 --- a/ext/simplexml/tests/bug27010.phpt +++ /dev/null @@ -1,31 +0,0 @@ ---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=== |