php-src/ext/simplexml/tests/bug46048.phpt
2009-02-03 21:42:35 +00:00

25 lines
347 B
PHP

--TEST--
Bug #46048 (SimpleXML top-level @attributes not part of iterator)
--FILE--
<?php
$xml = '
<data id="1">
<key>value</key>
</data>
';
$obj = simplexml_load_string($xml);
print_r(get_object_vars($obj));
echo "Done\n";
?>
--EXPECT--
Array
(
[@attributes] => Array
(
[id] => 1
)
[key] => value
)
Done