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)
警告 |
這個函數是實驗性質的。這個函數的行為、名稱、和關於此函數的任何其他文件在未來PHP的發行中可能會在不通知的情況下改變。 使用此延伸需自行承擔風險。 |
Adds a root element node to a dom document and returns the new node.
The element name is given in the passed parameter.
範例 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()); ?>
|
|