傳回XML 的body 元素的屬性和值:
<?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) { echo $a,' ="',$b,""<br>"; }?>attributes() 函數傳回XML 標籤的屬性和值。
attributes( ns,is_prefix );
參數 | 描述 |
---|---|
ns | 可選。規定被檢索的屬性的命名空間。 |
is_prefix | 可選。規定一個布林值。如果ns是前綴則為TRUE,如果ns是URI 則為FALSE。預設是FALSE。 |
傳回值: | 如果成功則傳回一個SimpleXMLElement 物件。 |
---|---|
PHP 版本: | 5.0.1+ |