ru_php/ext/simplexml/tests/profile01.phpt

19 lines
263 B
PHP

--TEST--
SimpleXML [profile]: Accessing a simple node
--EXTENSIONS--
simplexml
--FILE--
<?php
$root = simplexml_load_string('<?xml version="1.0"?>
<root>
<child>Hello</child>
</root>
');
echo $root->child;
echo "\n---Done---\n";
?>
--EXPECT--
Hello
---Done---