CI框架組成Smarty的方法分析,ci框架組成smarty_PHP教程

來源:互聯網
上載者:User

CI框架組成Smarty的方法分析,ci框架組成smarty


本文執行個體講述了CI框架組成Smarty的方法。分享給大家供大家參考,具體如下:

因為CI內建的模板功能不是很方便,所以大家普遍採用整合Smarty的方式來彌補CI這方面的不足。

本人在網上看了不少CI整合Smarty的教程,包括咱們CI論壇裡面的一個精華文章

http://codeigniter.org.cn/forums/forum.php?mod=viewthread&tid=10345。

自己對比了一下這些教程,我認為下面這個方案是所有裡面最優秀的,強烈推薦給大家(當然也是我自己採取的方案)

出處:

http://www.cnmiss.cn/?p=261

原文裡面的一些錯誤,我在本文裡面已經做了修正

下面說下我認為它更加優秀的原因,對比下這個方案和我們論壇的方案,你會發現,這個方案多了一點就是它擴充了核心類,

它將Smarty類方法assign和display擴充到Ci的控制器中,所以我們在CI中使用Smarty的時候可以像這樣使用:

public function index(){    //$this->load->view('welcome_message');    $data['title'] = '標題';    $data['num'] = '123456789';    //$this->cismarty->assign('data',$data); // 也可以    $this->assign('data',$data);    $this->assign('tmp','hello');    //$this->cismarty->display('test.html'); // 也可以    $this->display('test.html');}

通過對核心控制器類的簡單擴充,大家在CI中使用Smary的時候和直接使用Smarty的用法習慣是一樣的,這是一個很大的優點啊。

而且從核心類庫的擴充來看,大家也可以看出該文作者對於CI架構的理解是很好的。

根據這篇文章,我不僅成功整合了Smaty,而且也進一步加強了對於CI的理解。

而且該方案將Smarty的設定檔放到了CI架構的config目錄下,對於兩者,使用都很規範。

最終實現了"CI和Smaty的無縫結合"。

下面開始是具體教程: // 我在原文的基礎上做了一些修改,更正了原文的一些錯誤 注意下文中有'//'的地方,是我自己修改過的地方,或是自己又增加的地方。

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,裡面的內容如下:

<?phpif(!defined('BASEPATH')) EXIT('No direct script asscess allowed');require_once( APPPATH . 'libraries/Smarty-2.6.26/libs/Smarty.class.php' );class Cismarty 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檔案,裡面的內容如下:

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

5、在入口檔案所在目錄建立檔案夾templates_c、cache、configs;

6、在項目目錄下面的config目錄中找到autoload.php檔案
修改這項

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

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

<?php if (!defined('BASEPATH')) exit('No direct access allowed.');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('BASEPATH')) exit('No direct script access allowed');class Welcome extends MY_Controller { // 原文這裡寫錯  public function index()  {    //$this->load->view('welcome_message');    $data['title'] = '標題';    $data['num'] = '123456789';    //$this->cismarty->assign('data',$data); // 亦可    $this->assign('data',$data);    $this->assign('tmp','hello');    //$this->cismarty->display('test.html'); // 亦可    $this->display('test.html');  }}

然後再視圖中:試圖檔案夾位於項目目錄的views之下:

建立檔案test.html

{ $test.title} //( 原文是 {$test['title']},是錯誤的寫法,也有可能是Smarty版本的原因){$test.num|md5} // 原文這裡也寫錯了
{$tmp}

更多關於CodeIgniter相關內容感興趣的讀者可查看本站專題:《smarty模板入門基礎教程》、《codeigniter入門教程》、《CI(CodeIgniter)架構進階教程》、《php優秀開發架構總結》、《ThinkPHP入門教程》、《ThinkPHP常用方法總結》、《Zend FrameWork架構入門教程》、《php物件導向程式設計入門教程》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧匯總》

希望本文所述對大家基於CodeIgniter架構的PHP程式設計有所協助。

http://www.bkjia.com/PHPjc/1127873.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1127873.htmlTechArticleCI框架組成Smarty的方法分析,ci框架組成smarty 本文執行個體講述了CI框架組成Smarty的方法。分享給大家供大家參考,具體如下: 因為CI內建的模板...

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.