AtomParser::_p()publicWP 1.0

Method of the class: AtomParser{}

No Hooks.

Return

null. Nothing (null).

Usage

$AtomParser = new AtomParser();
$AtomParser->_p( $msg );
$msg (required)
-

AtomParser::_p() code WP 6.5.2

function _p($msg) {
    if($this->debug) {
        print str_repeat(" ", $this->depth * $this->indent) . $msg ."\n";
    }
}