function domxml root 3YDGOBDIPAT4EEEWZR54VRB2KO3QE452TOL6YLI


domxml_rootPodręcznik PHPPoprzedniNastępnydomxml_root (PHP 4 >= 4.0.0)domxml_root --  Returns root element node Descriptionobject domxml_root (object doc)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. domxml_root() takes one argument, an object of class "Dom document", and returns the root element node. There are actually other possible nodes like comments which are currently disregarded. The following example returns just the element with name CHAPTER and prints it. The other root node -- the comment -- is not returned. Przykład 1. Retrieving root element<?php $xmlstr = "<?xml version='1.0' standalone='yes'?> <!DOCTYPE chapter SYSTEM '/share/sgml/Norman_Walsh/db3xml10/db3xml10.dtd' [ <!ENTITY sp \"spanish\"> ]> <!-- lsfj --> <chapter language='en'><title language='en'>Title</title> <para language='ge'> &amp;sp; <!-- comment --> <informaltable language='&amp;sp;'> <tgroup cols='3'> <tbody> <row><entry>a1</entry><entry morerows='1'>b1</entry><entry>c1</entry></row> <row><entry>a2</entry><entry>c2</entry></row> <row><entry>a3</entry><entry>b3</entry><entry>c3</entry></row> </tbody> </tgroup> </informaltable> </para> </chapter>"; if(!$dom = xmldoc($xmlstr)) { echo "Error while parsing the document\n"; exit; } $root = $dom->root(); /* or $root = domxml_root($dom); */ print_r($root); ?> PoprzedniSpis treściNastępnyxmltreePoczątek rozdziałudomxml_add_root

Wyszukiwarka

Podobne podstrony:
function domxml add root
function domxml new child
function domxml node
function domxml node unlink node
function domxml children
function domxml open file
function hw root
function domxml open mem
function domxml get attribute
function domxml node set content
function domxml new xmldoc
function domxml xmltree
function domxml dumpmem
function domxml xslt stylesheet doc
function hw root

więcej podobnych podstron