前提条件: 阅读XML基础
SimpleXMLElement::addChild()函数是PHP中的内置函数,用于在SimpleXML对象中添加子级。
用法:
SimpleXMLElement SimpleXMLElement::addChild($name, $value, $namespace);
参数:此函数接受上述和以下所述的三个参数:
- $name:它是必填参数。它指定要添加的子元素的名称。
- $value:它是可选参数。它指定要添加的子元素的值。
- $namespace:它是可选参数。它为子元素指定名称空间。
返回值:成功添加子项后,它将返回SimpleXMLElement对象。
注意:此函数适用于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");
// 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文件:
参考: https://www.php.net/manual/en/simplexmlelement.addchild.php
相关用法
- PHP SimpleXMLElement registerXPathNamespace()用法及代码示例
- PHP SimpleXMLElement asXML()用法及代码示例
- PHP SimpleXMLElement attributes()用法及代码示例
- PHP SimpleXMLElement saveXML()用法及代码示例
- PHP SimpleXMLElement getNamespaces()用法及代码示例
- PHP SimpleXMLElement count()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP SimpleXMLElement getDocNamespaces()用法及代码示例
- PHP SimpleXMLElement::getName()用法及代码示例
- PHP SimpleXMLElement XPath()用法及代码示例
- PHP SimpleXMLElement addAttribute()用法及代码示例
- PHP SimpleXMLElement::__construct()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | SimpleXMLElement addChild() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。