CI整合Smarty,cismarty_PHP教程

來源:互聯網
上載者:User

CI整合Smarty,cismarty


1.到相應的網站下載smarty模板;

2.將原始碼中的libs目錄複寫到項目的libraries目錄下,改名為smarty3.0

3.在項目目錄的libraries檔案夾內建立檔案ci_smarty.php,裡面的內容如下:

defined('BASEPATH') OR exit('No direct script access allowed');
require_once(APPPATH . 'libraries/smarty3.0/Smarty.class.php');
class ci_smarty extends Smarty
{
protected $ci;
public function __construct(){
$this->ci = & get_instance();
$this->ci->load->config('smarty');//載入smarty的設定檔
//擷取相關的配置項
$this->template_dir = $this->ci->config->item('template_dir');
$this->complie_dir = $this->ci->config->item('compile_dir');
$this->cache_dir = $this->ci->config->item('cache_dir');
$this->config_dir = $this->ci->config->item('config_dir');
$this->template_ext = $this->ci->config->item('template_ext');
$this->caching = $this->ci->config->item('caching');
$this->cache_lifetime = $this->ci->config->item('lefttime');
}
}

4.在項目目錄的config檔案夾內建立檔案smarty.php檔案,裡面的內容如下:

5.在入口檔案所在目錄建立檔案夾templates_c

6.在項目的設定檔夾下,autoload.php檔案中加入

$autoload['libraries'] = array('ci_smarty');

7.在項目目錄的core檔案夾中建立檔案MY_Controller.php 內容如下: // 擴充核心控制類

8.測試

控制器中

視圖中

http://www.bkjia.com/PHPjc/1064066.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1064066.htmlTechArticleCI整合Smarty,cismarty 1.到相應的網站下載smarty模板; 2.將原始碼中的libs目錄複寫到項目的libraries目錄下,改名為smarty3.0 3.在項目目錄的libr...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.