本文整理汇总了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();