首頁  >  文章  >  後端開發  >  CI框架下smarty3的整合步驟(附程式碼)

CI框架下smarty3的整合步驟(附程式碼)

不言
不言轉載
2018-10-08 14:23:241620瀏覽

這篇文章帶給大家的內容是關於CI框架下smarty3的整合步驟(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

1 下載smarty3並將libs檔案放在框架libraries目錄下重新命名為smarty
2 在libraries下建立Ci_smarty.php文件,程式碼如下

#
<?php  
if ( ! defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;);

require_once(APPPATH.&#39;libraries/smarty/Smarty.class.php&#39;);     //这里指定Smarty.class.php的存放位置
class Ci_smarty extends Smarty
{
    protected $ci;
    public function __construct()
    {
        parent::__construct();
        $this->ci = & get_instance();
        $this->ci->load->config(&#39;smarty&#39;);//加载smarty的配置文件
        $this->cache_lifetime =$this->ci->config->item(&#39;cache_lifetime&#39;);
        $this->caching = $this->ci->config->item(&#39;caching&#39;);
        $this->config_dir = $this->ci->config->item(&#39;config_dir&#39;);
        $this->template_dir = $this->ci->config->item(&#39;template_dir&#39;);
        $this->compile_dir = $this->ci->config->item(&#39;compile_dir&#39;);
        $this->cache_dir = $this->ci->config->item(&#39;cache_dir&#39;);
        $this->use_sub_dirs = $this->ci->config->item(&#39;use_sub_dirs&#39;);
        $this->left_delimiter = $this->ci->config->item(&#39;left_delimiter&#39;);
        $this->right_delimiter = $this->ci->config->item(&#39;right_delimiter&#39;);
    }
}

3 在框架config目錄下建立smarty.php,程式碼如下

<?php
$config[&#39;cache_lifetime&#39;] = 3600;//缓存失效
$config[&#39;caching&#39;] = true;//开启缓存
$config[&#39;template_dir&#39;] = APPPATH .&#39;views&#39;;
$config[&#39;compile_dir&#39;] = APPPATH .&#39;views/template_c&#39;;
$config[&#39;cache_dir&#39;] = APPPATH . &#39;views/cache&#39;;
$config[&#39;config_dir&#39;] = APPPATH . &#39;views/config&#39;;
$config[&#39;use_sub_dirs&#39;] = false; //子目录变量(是否在缓存文件夹中生成子目录)
$config[&#39;left_delimiter&#39;] = &#39;{&#39;;
$config[&#39;right_delimiter&#39;] = &#39;}&#39;;

4 在設定檔autoload.php自動載入ci_smarty

$autoload[&#39;libraries&#39;]=array(&#39;ci_smarty&#39;);

5 在框架的擴充父類別MY_Controller.php(沒有就現在core下創建)添加如下程式碼

/ * @param $key * @par * smarty assign */
public function assign($key,$val){    
$this->cismarty->assign($key,$val);
}
/**
 * @param $html 
 * smarty smarty display方法 
 */
public function display($html,$is_cache=false){    
if(!$is_cache)  
 {       
 $this->ci_smarty->clearCache($html);    
 }    
$this->ci_smarty->display($html);}
/**
 * smarty清除所有缓存 
 * @author shangshikai 
 */
public function clearAllCache(){  
  $this->ci_smarty->clearAllCache();
  }
/** 
  * smarty 清除某个模板的缓存 
  * @author shangshikai 
  */
  public function clearCache($html){    
  $this->ci_smarty->clearCache($html);
  }
/**
 * @param $html
 * @return mixed
 * smarty判断该模板是否有缓存
 */
public function isCached($html)
{
    return $this->ci_smarty->isCached($html);
}

6 由於在設定檔smarty.php中開啟緩存,但不是所有頁面都適合緩存,所以在MY_Controller中配置display方法時應增加參數預設清除緩存,需要緩存的頁面只需在呼叫display方法時傳遞第二個參數為true。使用快取後,如果需要局部不需要快取可以使用{nocache}{/nocache}標籤包裹,如果標籤沒有快取使用方法是在標籤後增加nocache 如{foreach $arr as $v nocache}

#7 如果整個專案都不使用快取,可以在smarty.php中去掉$config['cache_lifetime'] = 3600;$config['caching'] = true;兩行,並且在MY_Controller中的display方法去除第二個參數以及相關判斷

以上是CI框架下smarty3的整合步驟(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:cnblogs.com。如有侵權,請聯絡admin@php.cn刪除