當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。