本文整理匯總了PHP中smarty::setCacheDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP smarty::setCacheDir方法的具體用法?PHP smarty::setCacheDir怎麽用?PHP smarty::setCacheDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類smarty
的用法示例。
在下文中一共展示了smarty::setCacheDir方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: tpl
public function tpl($new = false)
{
if (!$new && $this->tpl != null) {
return $this->tpl;
}
$tpl = new smarty();
$tpl->setTemplateDir(PAGE_DIR);
$tpl->setCompileDir(TEMP_DIR . '/tplc');
$tpl->setConfigDir(CONFIG_DIR);
$tpl->setCacheDir(TEMP_DIR . '/pagecache');
$tpl->autoload_filters = array('pre' => array('hu60ext'));
$tpl->setCompileId($this->page['bid'] . '.' . $this->page['tpl']);
if (SMARTY_COMPILE == 1) {
$tpl->compile_check = false;
} elseif (SMARTY_COMPILE == 2) {
$tpl->force_compile = true;
}
$tpl->assign(array('PAGE' => $this, 'CID' => $this->page['cid'], 'PID' => $this->page['pid'], 'BID' => $this->page['bid'], 'page' => $this, 'cid' => $this->page['cid'], 'pid' => $this->page['pid'], 'bid' => $this->page['bid']));
$this->tpl = $tpl;
return $tpl;
}