Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16474 программиста и 1770 роботов. Сейчас ищут 1323 программиста ...
XML_Tree::&addRoot
Вернуться к: XML_Tree
XML_Tree::&addRoot
XML_Tree::&addRoot – add root node
Synopsis
require_once "XML/Tree.php";
object XML_Tree_Node XML_Tree::&addRoot ( string $name , string $content='' , array $attributes=array() )
Adds a new root node to the XML datastructure.
Parameter
-
string $name - name of root element
-
string $content - data between the opening and closing tag
-
array $attributes - additional attributes for the tag. The attribute name is represented as the array key and the attribute value as entry for the key.
Return value
object XML_Tree_Node - reference to root node
Note
This function can not be called statically.
Example
Using &addRoot()
<?php
$tree = new XML_Tree;
$root =& $tree->addRoot("root");
?>
Вернуться к: XML_Tree