前提条件: 阅读XML基础
SimpleXMLElement::addAttribute()函数是PHP中的内置函数,可在SimpleXML对象中添加属性。
用法:
void SimpleXMLElement::addAttribute($name, $value, $namespace)
参数:此函数接受上述和以下所述的三个参数:
- $name:它是必填参数。它指定要添加的属性的名称。
- $value:它是可选参数。它指定要添加的属性的值。
- $namespace:它是可选参数。它为属性指定名称空间。
返回值:该函数不接受任何参数。
注意:此函数适用于PHP 5.1.3和更高版本。
例:
<?php
// Loading XML document to $user
$user = <<<XML
<user>
<username> user123 </username>
<name> firstname lastname </name>
<phone> +91-9876543210 </phone>
<detail> I am John Doe. Live in Kolkata, India. </detail>
</user>
XML;
// Creating new SimpleXMLElement
// object from $user
$xml = new SimpleXMLElement($user);
// Adding child named "institution"
// and valued "geeksforgeeks"
$xml->addChild("institution", "geeksforgeeks");
// Adding attribute named "type" and value
// "educational" in institution element.
$xml->institution->addAttribute("type", "educational");
// Printing as XML
echo $xml->asXML();
echo $xml->asXML('savexmltofile.xml');
?>
输出:
user123 firstname lastname +91-9876543210 I am John Doe. Live in Kolkata, India. geeksforgeeks 1
浏览器中的源代码:
<?xml version="1.0"?>
<user>
<username> user123 </username>
<name> firstname lastname </name>
<phone> +91-9876543210 </phone>
<detail> I am John Doe. Live in Kolkata, India. </detail>
<institution type="educational">geeksforgeeks</institution></user>
<br>1
相关用法
- PHP SimpleXMLElement attributes()用法及代码示例
- PHP SimpleXMLElement asXML()用法及代码示例
- PHP SimpleXMLElement registerXPathNamespace()用法及代码示例
- PHP SimpleXMLElement saveXML()用法及代码示例
- PHP SimpleXMLElement addChild()用法及代码示例
- PHP SimpleXMLElement getNamespaces()用法及代码示例
- PHP SimpleXMLElement count()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP SimpleXMLElement getDocNamespaces()用法及代码示例
- PHP SimpleXMLElement::getName()用法及代码示例
- PHP SimpleXMLElement XPath()用法及代码示例
- PHP SimpleXMLElement::__construct()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | SimpleXMLElement addAttribute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。