bug46048.phpt 351 B

123456789101112131415161718192021222324
  1. --TEST--
  2. Bug #46048 (SimpleXML top-level @attributes not part of iterator)
  3. --EXTENSIONS--
  4. simplexml
  5. --FILE--
  6. <?php
  7. $xml = '
  8. <data id="1">
  9. <key>value</key>
  10. </data>
  11. ';
  12. $obj = simplexml_load_string($xml);
  13. print_r(get_object_vars($obj));
  14. ?>
  15. --EXPECT--
  16. Array
  17. (
  18. [@attributes] => Array
  19. (
  20. [id] => 1
  21. )
  22. [key] => value
  23. )