setStorage(new Zend_Auth_Storage_Session('auth')); } protected function _initDocType(){ $this->bootstrap('View'); $view = $this->getResource('View'); $view->doctype('XHTML1_STRICT'); $view->headTitle('pbs2') ->setSeparator(' :: '); } } function print_a(){ $numargs = func_num_args(); if($numargs>1){ $out = ''; ob_start(); echo "
";
$a = func_get_arg(0);
$a = (is_bool($a))?(($a)?'true':'false'):$a;
print_r($a);
echo "";
}
}