domxml_add_root

(PHP 4 >= 4.0.0)

domxml_add_root --  Adds a further root node

Description

resource domxml_add_root (resource doc, string name)

Uyarý

Bu modül DENEYSELDÝR. Bunun anlamý, burada listenen fonksiyonlar, fonksiyon isimleri, kýsaca burada yazýlan HER ÞEY PHP"nin ilerki sürümlerinde UYARI YAPILMAKSIZIN DEðÝÞTÝRÝLEBÝLÝR. Dikkatli olun, ve bu modülü aldýÐýnýz riski bilerek kullanýn.

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

Örnek 1. Creating a simple HTML document header


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