SimpleXMLElement->addAttribute()
(no version information, might be only in CVS)
SimpleXMLElement->addAttribute() --
SimpleXML 要素に属性を追加する
説明
class
SimpleXMLElement {
void
addAttribute ( string name, string value [, string namespace] )
}
SimpleXML 要素に属性を追加します。
パラメータ
name
追加する属性の名前。
value
属性の値。
namespace
指定されている場合は、その属性が所属する名前空間。
例
例 1. 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();
?>
|
|