本文整理匯總了PHP中utility::Ret方法的典型用法代碼示例。如果您正苦於以下問題:PHP utility::Ret方法的具體用法?PHP utility::Ret怎麽用?PHP utility::Ret使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類utility
的用法示例。
在下文中一共展示了utility::Ret方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Display
/**
*
*/
public function Display()
{
switch ($this->type) {
case 'smarty':
if ($this->template === null) {
error::Ret()->Log('Call to display without defining template' . print_r(array('stack' => stack::Ret(), 'debug_backtrace' => debug_backtrace()), true));
} else {
$this->CallBack('display');
$this->smarty->assign('url_prefix', URL_PREFIX);
$this->smarty->assign('config', config::Ret());
$this->smarty->assign('server_name', $_SERVER['SERVER_NAME']);
$this->smarty->assign('http_referer', isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] !== '' ? $_SERVER['HTTP_REFERER'] : null);
$this->smarty->assign('session', $_SESSION);
$this->smarty->assign('utility', utility::Ret());
// die('<pre>' . print_r(array($_SESSION,debug_backtrace()),true));
$this->smarty->display($this->template);
}
break;
default:
error::Ret()->Log('Unable to Display(). Undefined type (' . $this->type . ')');
}
}