php attributes函數用於傳回XML標籤的屬性和值,其語法是attributes(ns,is_prefix),參數ns可選,規定被檢索的屬性的命名空間;is_prefix 可選,規定一個布林值。
php attributes函數怎麼用?
定義和用法
attributes() 函數傳回 XML 標籤的屬性和值。
語法
attributes(ns,is_prefix);
參數
#ns 可選。規定被檢索的屬性的命名空間。
is_prefix 可選。規定一個布林值。如果 ns 是前綴則為 TRUE,如果 ns 是 URI 則為 FALSE。預設是 FALSE。
傳回值: 如果成功則傳回一個 SimpleXMLElement 物件。
PHP 版本: 5.0.1
實例
傳回 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>"; } ?>
以上是php attributes函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!