SimpleXMLElement->addChild()とは? わかりやすく解説

Weblio 辞書 > コンピュータ > PHP関数リファレンス > SimpleXMLElement->addChild()の意味・解説 

SimpleXMLElement->addChild()

(PHP 5 >= 5.1.3)
SimpleXMLElement->addChild() — XML ノードに子要素を追加する

説明

class SimpleXMLElement {
SimpleXMLElement addChild ( string name [, string value [, string namespace]] )
} ノードに子要素を追加し、子要素の SimpleXMLElement を返します。

パラメータ

name
追加する子要素の名前。
value
指定されている場合は、子要素の値。
namespace
指定されている場合は、その子要素が所属する名前空間。

返り値

addChild メソッドは、 XML ノードに追加した子要素を表す SimpleXMLElement オブジェクトを返します。

例 2106. SimpleXML 要素への属性と子要素の追加
<?php

include 'example.php';
 
$sxe = new SimpleXMLElement($xmlstr);
$sxe->addAttribute('type', 'documentary');

$movie = $sxe->addChild('movie');
$movie->addChild('title', 'PHP2: More Parser Stories');
$movie->addChild('plot', 'This is all about the people who make it work.');

$characters = $movie->addChild('characters');
$character  = $characters->addChild('character');
$character->addChild('name', 'Mr. Parser');
$character->addChild('actor', 'John Doe');

$rating = $movie->addChild('rating', '5');
$rating->addAttribute('type', 'stars');
 
echo $sxe->asXML();

?>


参考

SimpleXMLElement->addAttribute()



このページでは「PHP関数リファレンス」からSimpleXMLElement->addChild()を検索した結果を表示しています。
Weblioに収録されているすべての辞書からSimpleXMLElement->addChild()を検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からSimpleXMLElement->addChild() を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「SimpleXMLElement->addChild()」の関連用語

SimpleXMLElement->addChild()のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



SimpleXMLElement->addChild()のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
PHP Documentation GroupPHP Documentation Group
Copyright © 1997 - 2025 by the PHP Documentation Group.

©2025 GRAS Group, Inc.RSS