profile03.phpt 284 B

123456789101112131415161718
  1. --TEST--
  2. SimpleXML [profile]: Accessing an attribute
  3. --EXTENSIONS--
  4. simplexml
  5. --FILE--
  6. <?php
  7. $root = simplexml_load_string('<?xml version="1.0"?>
  8. <root>
  9. <child attribute="Sample" />
  10. </root>
  11. ');
  12. echo $root->child['attribute'];
  13. echo "\n---Done---\n";
  14. ?>
  15. --EXPECT--
  16. Sample
  17. ---Done---