function domxml set attribute PZQELFMWH3I4WZ6ZLTBWJZR5HBTTBAEK2HTCCVY
domxml_set_attributePodręcznik PHPPoprzedniNastępnydomxml_set_attribute (PHP 4 >= 4.0.5)domxml_set_attribute --
Descriptionobject domxml_set_attribute (resource node, string name, string value)OstrzeżenieTa funkcja jest w stadium
EKSPERYMENTALNYM. Oznacza to, że zachowanie funkcji, jej
nazwa, w zasadzie wszystko udokumentowane tutaj może zostać zmienione w
przyszłych wersjach PHP bez wcześniejszego uprzedzenia. Używaj tej funkcji na
własne ryzyko.
Sets an attribute with name name of the given
node on a value.
If we take the example from domxml_add_root() it
is simple to add an attribute to the HEAD element by the simply calling
the set_attribute() function of the node class.
Przykład 1. Adding an attribute to an element<?php
$doc = new_xmldoc("1.0");
$root = $doc->add_root("HTML");
$head = $root->new_child("HEAD", "");
$head->new_child("TITLE", "Hier der Titel");
$head->set_attribute("Language", "ge");
echo $doc->dumpmem();
?>
PoprzedniSpis treściNastępnydomxml_get_attributePoczątek rozdziałudomxml_children