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

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

SimpleXMLElement->addAttribute()

(PHP 5 >= 5.1.3)
SimpleXMLElement->addAttribute() — SimpleXML 要素に属性を追加する

説明

class SimpleXMLElement {
void addAttribute ( string name, string value [, string namespace] )
} SimpleXML 要素に属性を追加します。

パラメータ

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

返り値

値を返しません。

例 2105. 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->addChild()




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

辞書ショートカット

すべての辞書の索引

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

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

   

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



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

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

©2024 GRAS Group, Inc.RSS