AtomParser::start_nspublicWP 1.0

Method of the class: AtomParser{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

AtomParser::start_ns() code WP 7.0

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