--TEST-- SimpleXML [profile]: Accessing two elements with the same name, but different namespaces --SKIPIF-- --FILE-- Hello World '); echo $root->children('reserved-ns')->child; echo "\n"; echo $root->children('special-ns')->child; foreach ($root->child as $child) { echo "$child\n"; } echo "\n---Done---\n"; ?> --EXPECT-- Hello World ---Done---