本文整理匯總了PHP中TPL::instance方法的典型用法代碼示例。如果您正苦於以下問題:PHP TPL::instance方法的具體用法?PHP TPL::instance怎麽用?PHP TPL::instance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TPL
的用法示例。
在下文中一共展示了TPL::instance方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getInstance
public static function getInstance()
{
if (!self::$instance instanceof self) {
self::$instance = new self();
}
return self::$instance;
}
示例2: singleton
public static function singleton()
{
require_once SYS_ROOT . "/smarty/Smarty.class.php";
if (!isset(self::$instance)) {
self::$instance = new Smarty();
self::$instance->use_sub_dirs = true;
//防止沒有第一次使用的時候,無法連接數據庫
if (file_exists(dirname(dirname(__FILE__)) . '/config.php')) {
$view_dir = daocall('setting', 'get', array('view_dir'));
}
if (!$view_dir) {
$view_dir = 'default';
}
self::$instance->template_dir = APPLICATON_ROOT . '/view/' . $view_dir;
self::$instance->compile_dir = SYS_ROOT . '/templates_c/' . $view_dir;
if (!defined(TPL_ROOT)) {
//define(TPL_ROOT,dirname($_SERVER["REQUEST_URI"]));
define(TPL_ROOT, dirname($_SERVER['PHP_SELF']));
}
self::$instance->assign("STATIC", TPL_ROOT . '/view/' . $view_dir . '/');
//self::$instance->assign("PSTATIC","/");
//self::$instance->assign('role',getRoles());
//self::$instance->caching = false;
self::$instance->left_delimiter = '{{';
self::$instance->right_delimiter = '}}';
}
return self::$instance;
}