PHP dom_domdocument_getelementsbytagnamens function
Like this blog? Consider exploring one of our sponsored banner ads...
DOMDocument->getElementsByTagNameNS()
(no version information, might be only in CVS)
DOMDocument->getElementsByTagNameNS() —Searches for all elements with given tag name in specified namespace
Descriptionclass DOMDocument {
DOMNodeList getElementsByTagNameNS ( string namespaceURI, string localName )
}
Returns a DOMNodeList of all elements with a given
local name and a namespace URI.
namespaceURI
The namespace URI of the elements to match on.
The special value * matches all namespaces.
The local name of the elements to match on.
The special value * matches all local names.
Return Values
A new DOMNodeList object containing all the matched
elements.
Example 1. Get all the XInclude elements
$xml = <<<EOD <?xml version="1.0"
<chapter xmlns:xi=”http://www.w3.org/2001/XInclude”>
<title>Books of the other guy..</title>
<para>
<xi:include href=”book.xml”>
<xi:fallback>
<error>xinclude: book.xml not found</error>
</xi:fallback>
</xi:include>
<include>
This is another namespace
</include>
</para>
</chapter>
EOD;
$dom = new DOMDocument;
// load the XML string defined above
$dom->loadXML($xml);
foreach ($dom->getElementsByTagNameNS(‘http://www.w3.org/2001/XInclude’, ‘*’) as $element) {
echo ‘local name: ‘, $element->localName, ‘, prefix: ‘, $element->prefix, “\n”;
}
The above example will output:
local name: include, prefix: xilocal name: fallback, prefix: xi
See Also
DOMDocument->getElementsByTagName()
About this entry
You’re currently reading “PHP dom_domdocument_getelementsbytagnamens function,” an entry on BRADINO
- Published:
- 2.26.07 / 1am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]