ホームページ  >  記事  >  バックエンド開発  >  CI フレームワークでのユニバーサル テンプレート エンジン Smarty の使用

CI フレームワークでのユニバーサル テンプレート エンジン Smarty の使用

PHP中文网
PHP中文网オリジナル
2017-08-26 10:09:342246ブラウズ

CI バージョン: 2.1.4 // 現時点での最新バージョン
Smarty バージョン: Smarty-2.6.26 // 以前このバージョンを使用していたので、自分の使用習慣に注意するために最新バージョンは使用していませんSmaty バージョンはここにあります。誰もが理解している原則を拡張して、使用したい Smatry バージョンを選択できます。


1. 対応するサイトから Smarty のソース コード パッケージをダウンロードします。 // ここでは Smarty-2.6.26 を使用しています。 2. ソース コード パッケージ内の libs フォルダーを CI プロジェクト ディレクトリの下にコピーします。 Smarty-2.6.26 に名前を変更します。 //
3. プロジェクト ディレクトリのライブラリ フォルダーに新しいファイルを作成します。内容は次のとおりです。


<?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['libraries'] = array('Cismarty');//目的は、システムを手動でロードすることなく、実行中に自動的にロードできるようにすることです。コントローラー


7. プロジェクトディレクトリ内のコアファイル フォルダー内の新しいファイル 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); 
    } 
}

次にビュー内: ビューフォルダーはプロジェクトディレクトリのビューの下にあります:

新しいファイルtest.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;); 
    } 
}

この記事のアドレス:

http:// www.php.cn/php-weizijiaocheng-377484.html

プログラミングを学ぶために PHP 中国語 Web サイトに来てください www .php.cn


以上がCI フレームワークでのユニバーサル テンプレート エンジン Smarty の使用の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。