首頁  >  文章  >  後端開發  >  CI框架中使用通用模板引擎smarty

CI框架中使用通用模板引擎smarty

PHP中文网
PHP中文网原創
2017-08-26 10:09:342253瀏覽

 CI版本:2.1.4 // 此時的最新版本
Smarty版本:Smarty-2.6.26 // 因為我之前使用這個版本,為了照顧自己的使用習慣,這裡沒有使用最新的Smaty版本,大家了解擴充原理,可以選擇自己想用的Smatry版本。


1、到對應網站下載Smarty的源碼包; // 我這裡用的是Smarty-2.6.26
2、將源碼包裡面的libs資料夾copy到CI的項目目錄下面的libraries資料夾下,並重新命名為Smarty-2.6.26;//
3、在專案目錄的libraries資料夾內新建檔案Cismarty.php,裡面的內容如下:

<?php 
if(!defined(&#39;BASEPATH&#39;)) EXIT(&#39;No direct script asscess allowed&#39;); 
require_once( APPPATH . &#39;libraries/Smarty-2.6.26/libs/Smarty.class.php&#39; ); 
class Cismarty extends Smarty { 
    protected $ci; 
    public function  __construct(){ 
        $this->ci = & get_instance(); 
        $this->ci->load->config(&#39;smarty&#39;);//加载smarty的配置文件 
        //获取相关的配置项 
        $this->template_dir   = $this->ci->config->item(&#39;template_dir&#39;); 
        $this->complie_dir    = $this->ci->config->item(&#39;compile_dir&#39;); 
        $this->cache_dir      = $this->ci->config->item(&#39;cache_dir&#39;); 
        $this->config_dir     = $this->ci->config->item(&#39;config_dir&#39;); 
        $this->template_ext   = $this->ci->config->item(&#39;template_ext&#39;); 
        $this->caching        = $this->ci->config->item(&#39;caching&#39;); 
        $this->cache_lifetime = $this->ci->config->item(&#39;lefttime&#39;); 
    } 
}

4、在專案目錄的config資料夾內新檔案 smarty.php檔案,裡面的內容如下:

<?php  if ( ! defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;); 
$config[&#39;theme&#39;]        = &#39;default&#39;; 
$config[&#39;template_dir&#39;] = APPPATH . &#39;views&#39;; 
$config[&#39;compile_dir&#39;]  = FCPATH . &#39;templates_c&#39;; 
$config[&#39;cache_dir&#39;]    = FCPATH . &#39;cache&#39;; 
$config[&#39;config_dir&#39;]   = FCPATH . &#39;configs&#39;; 
$config[&#39;template_ext&#39;] = &#39;.html&#39;; 
$config[&#39;caching&#39;]      = false; 
$config[&#39;lefttime&#39;]     = 60;

5、在入口檔案所在目錄新資料夾templates_c、 cache、configs;
6、在專案目錄下面的config目錄中找到autoload.php檔
修改這個

$autoload['libraries'] = array('Cismarty');/ /目的是:讓系統運行時,自動加載,不用認為的在控制器中手動加載


7、在專案目錄的core資料夾中新建檔案MY_Controller.php 內容如下: //擴充核心控制類別

<?php if (!defined(&#39;BASEPATH&#39;)) exit(&#39;No direct access allowed.&#39;); 
class MY_Controller extends CI_Controller { // 原文这里写错 
    public function __construct() { 
        parent::__construct(); 
    } 
    public function assign($key,$val) { 
        $this->cismarty->assign($key,$val); 
    } 
    public function display($html) { 
        $this->cismarty->display($html); 
    } 
}

設定完成


------------------------- -------------------------------------------------- -------------------------------------------------- -------------------------
使用方法實例:
在控制器中如:

<?php if ( ! defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;); 
class Welcome extends MY_Controller { // 原文这里写错 
    public function index() 
    { 
        //$this->load->view(&#39;welcome_message&#39;); 
        $data[&#39;title&#39;] = &#39;标题&#39;; 
        $data[&#39;num&#39;] = &#39;123456789&#39;; 
        //$this->cismarty->assign(&#39;data&#39;,$data); // 亦可 
        $this->assign(&#39;data&#39;,$data); 
        $this->assign(&#39;tmp&#39;,&#39;hello&#39;); 
        //$this->cismarty->display(&#39;test.html&#39;); // 亦可 
        $this->display(&#39;test.html&#39;); 
    } 
}

然後再檢視中:試圖資料夾位於專案目錄的views之下:
新檔案test.html

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>{ $test.title}</title> // 原文是 <title>{$test[&#39;title&#39;]}</title>,是错误的写法,也有可能是Smarty版本的原因 
<style type="text/css"> 
</style> 
</head> 
<body> 
{$test.num|md5} // 原文这里也写错了 
<br> 
{$tmp} 
</body> 
</html>

本文網址:http://www.php.cn /php-weizijiaocheng-377484.html

學程式設計就來PHP中文網   www.php.cn

以上是CI框架中使用通用模板引擎smarty的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn