本文整理匯總了PHP中TPL::getInstance方法的典型用法代碼示例。如果您正苦於以下問題:PHP TPL::getInstance方法的具體用法?PHP TPL::getInstance怎麽用?PHP TPL::getInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TPL
的用法示例。
在下文中一共展示了TPL::getInstance方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct()
{
$this->tpl = TPL::getInstance();
$this->model = Factory::setModel();
$this->redirect = Redirect::getInstance($this->tpl);
}
示例2: __construct
protected function __construct()
{
$this->_model = Factory::setModel();
$this->_tpl = TPL::getInstance();
$this->_redirect = Redirect::getInstance($this->_tpl);
}
示例3: __construct
public function __construct()
{
$this->_tpl = TPL::getInstance();
}
示例4: ini_set
//錯誤處理
if (!ini_get('display_errors')) {
ini_set('display_errors', 'on');
}
error_reporting(E_ALL ^ E_STRICT ^ E_NOTICE);
//^E_NOTICE
header('Content-type:text/html;charset=utf-8');
//設置時區
date_default_timezone_set('Asia/Shanghai');
//創建實際路徑
define('ROOT_PATH', dirname(__DIR__));
require ROOT_PATH . '/configs/profile.inc.php';
require ROOT_PATH . '/smarty/Smarty.class.php';
//開啟autoload函數
spl_autoload_register('__autoload');
function __autoload($_className)
{
if (substr($_className, -5) == 'Model') {
require ROOT_PATH . '/model/' . $_className . '.class.php';
} elseif (substr($_className, -6) == 'Action') {
require ROOT_PATH . '/controller/' . $_className . '.class.php';
} elseif (substr($_className, -5) == 'Check') {
require ROOT_PATH . '/check/' . $_className . '.class.php';
} else {
require ROOT_PATH . '/public/' . ucfirst($_className) . '.class.php';
}
}
//設置smarty的初始值
$tpl = TPL::getInstance();
//運行控製器
Factory::setAction()->run();