この記事の内容は、smarty3 を CI フレームワークに統合する手順 (コード付き) に関するもので、一定の参考価値があります。必要な友人は参考にしていただければ幸いです。
1 Smarty3 をダウンロードし、libs ファイルをフレームワーク ライブラリ ディレクトリに配置し、名前を Smarty に変更します。
2 ライブラリの下に Ci_smarty.php ファイルを作成します。コードは次のとおりです。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); require_once(APPPATH.'libraries/smarty/Smarty.class.php'); //这里指定Smarty.class.php的存放位置 class Ci_smarty extends Smarty { protected $ci; public function __construct() { parent::__construct(); $this->ci = & get_instance(); $this->ci->load->config('smarty');//加载smarty的配置文件 $this->cache_lifetime =$this->ci->config->item('cache_lifetime'); $this->caching = $this->ci->config->item('caching'); $this->config_dir = $this->ci->config->item('config_dir'); $this->template_dir = $this->ci->config->item('template_dir'); $this->compile_dir = $this->ci->config->item('compile_dir'); $this->cache_dir = $this->ci->config->item('cache_dir'); $this->use_sub_dirs = $this->ci->config->item('use_sub_dirs'); $this->left_delimiter = $this->ci->config->item('left_delimiter'); $this->right_delimiter = $this->ci->config->item('right_delimiter'); } }
3 「フレームワーク構成ディレクトリにsmarty.phpを作成する」のコードは次のとおりです。
<?php $config['cache_lifetime'] = 3600;//缓存失效 $config['caching'] = true;//开启缓存 $config['template_dir'] = APPPATH .'views'; $config['compile_dir'] = APPPATH .'views/template_c'; $config['cache_dir'] = APPPATH . 'views/cache'; $config['config_dir'] = APPPATH . 'views/config'; $config['use_sub_dirs'] = false; //子目录变量(是否在缓存文件夹中生成子目录) $config['left_delimiter'] = '{'; $config['right_delimiter'] = '}';
4 拡張親の構成ファイルautoload.phpにci_smarty
$autoload['libraries']=array('ci_smarty');
5を自動的にロードします。フレームワークのクラス MY_Controller.php (そうでない場合は、コアだけを作成します) 次のコードを追加します
/ * @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 で表示メソッドを構成するときは、デフォルトでキャッシュをクリアするためのパラメータを追加する必要があります。これにはキャッシュが必要です。ページでは、表示メソッドを呼び出すときに 2 番目のパラメータを true として渡すだけで済みます。キャッシュを使用した後、ローカルにキャッシュする必要がない場合は、{nocache}{/nocache} タグ パッケージを使用できます。タグがキャッシュされていない場合は、{foreach $ のようにタグの後に nocache を追加する方法です。 arr as $v nocache}
7 プロジェクト全体でキャッシュを使用しない場合は、smarty の $config['cache_lifetime'] = 3600; $config['caching'] = true; の 2 行を削除できます。 .php を作成し、MY_Controller の表示メソッドの 2 行目を削除します。パラメータと関連する判断
以上がCI フレームワークでの Smarty3 の統合手順 (コード付き)の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。