AtomParser::start_ns()publicWP 1.0

Method of the class: AtomParser{}

No Hooks.

Return

null. Nothing (null).

Usage

$AtomParser = new AtomParser();
$AtomParser->start_ns( $parser, $prefix, $uri );
$parser (required)
-
$prefix (required)
-
$uri (required)
-

AtomParser::start_ns() code WP 6.5.2

function start_ns($parser, $prefix, $uri) {
    $this->_p("starting: " . $prefix . ":" . $uri);
    array_push($this->ns_decls, array($prefix,$uri));
}