当前位置: 首页>>代码示例>>PHP>>正文


PHP TPL::getInstance方法代码示例

本文整理汇总了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);
 }
开发者ID:zhendeguoke1008,项目名称:shop-1,代码行数:6,代码来源:Action.class.php

示例2: __construct

 protected function __construct()
 {
     $this->_model = Factory::setModel();
     $this->_tpl = TPL::getInstance();
     $this->_redirect = Redirect::getInstance($this->_tpl);
 }
开发者ID:yjf0503,项目名称:Mall,代码行数:6,代码来源:Action.class.php

示例3: __construct

 public function __construct()
 {
     $this->_tpl = TPL::getInstance();
 }
开发者ID:yjf0503,项目名称:Mall,代码行数:4,代码来源:check.class.php

示例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();
开发者ID:zhendeguoke1008,项目名称:shop-1,代码行数:31,代码来源:run.inc.php


注:本文中的TPL::getInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。