PHP attributes() 函数

定义和用法

attributes() 函数获取 SimpleXML 元素的属性。

该函数提供在一个 XML 标签中定义的属性和值。

语法

  1. class SimpleXMLElement
  2. {
  3. string attributes(ns,is_prefix)
  4. }
参数 描述
ns 可选。被检索的属性的命名空间。
is_prefix 可选。默认是 false。

例子

XML 文件:

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <note>
  3. <to>George</to>
  4. <from>John</from>
  5. <heading>Reminder</heading>
  6. <body type="small" important="low">Don't forget the meeting!</body>
  7. </note>

PHP 代码:

  1. <?php
  2. $xml = simplexml_load_file("test.xml");
  3.  
  4. foreach($xml->body[0]->attributes() as $a => $b)
  5. {
  6. echo $a,'="',$b,'"';
  7. }
  8. ?>

输出:

  1. type="small" important="low"