|
SimpleXMLElement::addChildXML ノードに子要素を追加する 説明
public SimpleXMLElementnull SimpleXMLElement::addChild(string
$qualifiedName , stringnull $value = null , stringnull $namespace = null )ノードに子要素を追加し、子要素の SimpleXMLElement を返します。 パラメータ
戻り値
例
例1 SimpleXML 要素への属性と子要素の追加
上の例の出力は、 たとえば以下のようになります。 <?xml version="1.0" standalone="yes"?> <movies type="documentary"> <movie> <title>PHP: Behind the Parser</title> <characters> <character> <name>Ms. Coder</name> <actor>Onlivia Actora</actor> </character> <character> <name>Mr. Coder</name> <actor>El ActÓr</actor> </character> </characters> <plot> So, this language. It's like, a programming language. Or is it a scripting language? All is revealed in this thrilling horror spoof of a documentary. </plot> <great-lines> <line>PHP solves all my web problems</line> </great-lines> <rating type="thumbs">7</rating> <rating type="stars">5</rating> </movie> <movie> <title>PHP2: More Parser Stories</title> <plot>This is all about the people who make it work.</plot> <characters> <character> <name>Mr. Parser</name> <actor>John Doe</actor> </character> </characters> <rating type="stars">5</rating> </movie> </movies> |