--TEST-- SimpleXML [profile]: Accessing two elements with the same name, but different namespaces --SKIPIF-- --FILE-- Hello World '); var_dump($root->children('reserved-ns')->child); var_dump($root->children('special-ns')->child); var_dump((string)$root->children('reserved-ns')->child); var_dump((string)$root->children('special-ns')->child); var_dump($root->child); ?> ===DONE=== --EXPECTF-- object(SimpleXMLElement)#%d (1) { [0]=> string(5) "Hello" } object(SimpleXMLElement)#%d (1) { [0]=> string(5) "World" } string(5) "Hello" string(5) "World" object(SimpleXMLElement)#%d (0) { } ===DONE===