PHP addAttribute() 函数

定义和用法

addAttribute() 函数给 SimpleXML 元素添加一个属性。

该函数无返回值。

语法

  1. class SimpleXMLElement
  2. {
  3. string addAttribute(name,value,ns)
  4. }
参数 描述
name 必需。规定属性的名称。
value 必需。规定属性的值。
ns 可选。规定属性的命名空间。

例子

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>Don't forget the meeting!</body>
  7. </note>

PHP 代码:

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

输出:

  1. type="small"