App下载

demo_func_simplexml_children 在线工具

demo_func_simplexml_children 在线工具

<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
XML;

$xml=simplexml_load_string($note);
foreach ($xml->children() as $child)
&nbsp;&nbsp;  {
&nbsp;&nbsp;  echo "Child node: " . $child . "<br>";
&nbsp;&nbsp;  }
?>
运行结果