這篇文章主要為大家展示了“CodeIgniter如何整合Smarty”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“CodeIgniter如何整合Smarty”這篇文章吧。
目前成都創(chuàng)新互聯(lián)已為1000+的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、玉屏網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。具體如下:
CI3.0.2發(fā)布后感覺模板類還是不怎么好用,而且不能編譯。Smarty功能強(qiáng)大,用習(xí)慣了Smarty標(biāo)簽,一般難以放棄,而且,是可以編譯文件執(zhí)行,速度快,我們可以把它們整合使用,彌補(bǔ)CI的模板功能的不足。我們整合使用的是CI版本3.0.3及 Smarty版本3.1.27。下面描述整合過程。
1、下載smarty-3.1.27
2 、解壓smarty-3.1.27到CI項(xiàng)目中的application\libraries下面,其他的文件刪除。
3、 在application\libraries目錄下創(chuàng)建Ci_smarty.php文件,代碼如下:
if ( ! defined('BASEPATH')) exit('No direct script access allowed'); require(APPPATH.'libraries/smarty-3.1.27/libs/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'); } }
4、在application\config目錄下創(chuàng)建配置文件smarty.php,代碼如下:
if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $config['cache_lifetime'] = 60; $config['caching'] = false; $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'] = '}';
5、在application\core創(chuàng)建MY_controller.php,代碼如下:
class MY_controller extends CI_Controller { public function __construct() { parent::__construct(); } public function assign($key,$val) { $this->ci_smarty->assign($key,$val); } public function display($html) { $this->ci_smarty->display($html); } }
至此,配置整合工作over了,下面我們要驗(yàn)證是否配置成功。
7、修改application\controllers的Welcome.php,代碼如下:
defined('BASEPATH') OR exit('No direct script access allowed'); class Welcome extends MY_controller { public function index() { $test='ci 3.0.3 + smarty 3.1.27 配置成功'; $this->assign('test',$test); $this->display('test.html'); } }
然后,在application\views下創(chuàng)建test.html文件,代碼如下:
{$test}
在瀏覽器地址欄中輸入:http://localhost/index.php/Welcome
結(jié)果顯示:
ci 3.0.3 + smarty 3.1.27 配置成功
大功告成!
以上是“CodeIgniter如何整合Smarty”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:CodeIgniter如何整合Smarty-創(chuàng)新互聯(lián)
標(biāo)題路徑:http://jinyejixie.com/article44/csohee.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)、商城網(wǎng)站、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、全網(wǎng)營銷推廣、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容