AtomParser::start_ns() WordPress Method
The AtomParser::start_ns() method is used to handle XML namespace declarations. It is called when the parser encounters a namespace start tag in the XML document. The method takes two parameters: the namespace URI and the namespace prefix.
AtomParser::start_ns( $parser, $prefix, $uri ) #
Source
File: wp-includes/atomlib.php
function start_ns($parser, $prefix, $uri) { $this->_p("starting: " . $prefix . ":" . $uri); array_push($this->ns_decls, array($prefix,$uri)); }
Expand full source codeCollapse full source codeView on TracView on GitHub