App下载

demo_func_simplexml_attributes 在线工具

demo_func_simplexml_attributes 在线工具

<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body date="2013-01-01" type="private">Don't forget me this weekend!</body>
</note>
XML;

$xml=simplexml_load_string($note);
foreach($xml->body[0]->attributes() as $a => $b)
{
&nbsp;&nbsp;&nbsp;&nbsp;    echo $a,'="',$b,"\"<br>";
}
?>
运行结果