DomDocument->add_root [deprecated]

(unknown)

DomDocument->add_root [deprecated] --  ルートノードを追加する

説明

resource DomDocument->add_root ( string name)

警告

この関数は、 実験的なステータスにあります。これは、この関数の 動作、関数名、ここで書かれていること全てがPHPの将来のバージョンで予告 なく変更される可能性があることを意味します。注意を喚起するとともに自分 のリスクでこの関数を使用して下さい。

Adds a root element node to a dom document and returns the new node. The element name is given in the passed parameter.

例 1Creating a simple HTML document header

<?php
$doc = domxml_new_doc("1.0");
$root = $doc->add_root("HTML");
$head = $root->new_child("HEAD", "");
$head->new_child("TITLE", "Hier der Titel");
echo htmlentities($doc->dump_mem());
?>