目录

PHP attribute() 函数

❮ PHP SimpleXML 参考

示例

返回 XML <body> 元素的属性和值:

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

$xml = simplexml_load_string($note);
foreach($xml->body[0]->attributes() as $a => $b)
  {
  echo $a,'="',$b,"<br>";
  }
?>
运行示例 »

定义和用法

attribute() 函数返回 XML 元素的属性和值。


语法

SimpleXMLElement::attributes( ns, prefix)

参数值

Parameter Description
ns Optional. Specifies a namespace for the retrieved attributes
prefix Optional. Specifies TRUE if ns is a prefix and FALSE if ns is a URI. Default is FALSE

技术细节

返回值: 成功时返回 SimpleXMLElement 对象
PHP 版本: 5.0+

❮ PHP SimpleXML 参考