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));
    }

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.