getNamespaces()We will discuss more on how to get namespace details by using PHP. Here is the example to get namespace from our XML file. We have used one more sample file which used namespace in its elements. xml-sample2.php
We will use PHP script to get the namespaces from above XML data. Here it is
The output is
By using recursive to TRUE we will get name space of total documents including all child nodes. By making it FALSE it will return only root node namespaces.
Now change this line
We will get only document root namespace
Subscribe to our YouTube Channel here
This article is written by plus2net.com team.
https://www.plus2net.com
![]() |
PHP & XML
getName(): Name of the XML element or tag
children(): Children of a XML node
count(): Counting number of Children of an XML element
simplexml_load_file(): creating object by reading from XML file
simplexml_load_string(): creating object by using XML formatted string
asXML: Getting string output or writing to file
addAttribute(): Adding attribute to element of XML object
addChild(): Adding Child element to element of XML object
getNamespaces(): Getting NameSpaces from XML object
XML from Database(): Generating XML from table records
|