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="utf-8"?>
  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. foreach($xml->body[0]->attributes() as $a => $b)
  4. {
  5. echo $a,'="',$b,'"';
  6. }
  7. ?>

输出:

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

分类导航