DomDocument->add_root

(no version information, might be only in CVS)

DomDocument->add_root --  Adds a root node [deprecated]

Description

resource DomDocument->add_root ( string name)

Varovanie

Táto funkcia je EXPERIMENTÁLNA. Správanie tejto funkcie, názov tejto funkcie a hocičo iné zdokumentované o tejto funkcii sa môže zmeniť bez povšimnutia v budúcom vydaní PHP. Používajte túto funkcii na svoje vlastné riziko.

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

Príklad 1. Creating 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());
?>