CodeIgniter整合Smarty的方法详解


Posted in PHP onAugust 25, 2017

本文实例讲述了CodeIgniter整合Smarty的方法。分享给大家供大家参考,具体如下:

CI3.0.2发布后感觉模板类还是不怎么好用,而且不能编译。Smarty功能强大,用习惯了Smarty标签,一般难以放弃,而且,是可以编译文件执行,速度快,我们可以把它们整合使用,弥补CI的模板功能的不足。我们整合使用的是CI版本3.0.3及 Smarty版本3.1.27。下面描述整合过程。

1、下载smarty-3.1.27

2 、解压smarty-3.1.27到CI项目中的application\libraries下面,其他的文件删除。

3、 在application\libraries目录下创建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目录下创建配置文件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创建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了,下面我们要验证是否配置成功。

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下创建test.html文件,代码如下:

{$test}

在浏览器地址栏中输入:http://localhost/index.php/Welcome

结果显示:

ci 3.0.3 + smarty 3.1.27 配置成功

大功告成!

希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。

PHP 相关文章推荐
php中通过正则表达式下载内容中的远程图片的函数代码
Jan 10 PHP
浅谈Eclipse PDT调试PHP程序
Jun 09 PHP
PHP错误Allowed memory size of 67108864 bytes exhausted的3种解决办法
Jul 28 PHP
php实现过滤表单提交中html标签的方法
Oct 17 PHP
PHP编程之设置apache虚拟目录
Jul 08 PHP
Yii2主题(Theme)用法详解
Jul 23 PHP
PHP入门教程之自定义函数用法详解(创建,调用,变量,参数,返回值等)
Sep 11 PHP
PHP获取访问页面HTTP状态码的实现代码
Nov 03 PHP
PHP获取中国时间(上海时区时间)及美国时间的方法
Feb 23 PHP
PHP实现的常规正则验证helper公共类完整实例
Apr 27 PHP
php图像验证码生成代码
Jun 08 PHP
PHP实现超简单的SSL加密解密、验证及签名的方法示例
Aug 28 PHP
PHP观察者模式原理与简单实现方法示例
Aug 25 #PHP
PHP实现的策略模式简单示例
Aug 25 #PHP
php实现简单的权限管理的示例代码
Aug 25 #PHP
thinkphp 抓取网站的内容并且保存到本地的实例详解
Aug 25 #PHP
Laravel中前端js上传图片到七牛云的示例代码
Sep 04 #PHP
使用YII2框架实现微信公众号中表单提交功能
Sep 04 #PHP
PHP实现批量重命名某个文件夹下所有文件的方法
Sep 04 #PHP
You might like
set_include_path和get_include_path使用及注意事项
2013/02/02 PHP
PHP 登录记住密码实现思路
2013/05/07 PHP
浅析PHP中的UNICODE 编码与解码
2013/06/29 PHP
php压缩文件夹最新版
2018/07/18 PHP
Laravel框架执行原生SQL语句及使用paginate分页的方法
2018/08/17 PHP
js 小贴士一星期合集
2010/04/07 Javascript
jQuery实现用方向键控制层的上下左右移动
2013/01/13 Javascript
jQuery Deferred和Promise创建响应式应用程序详细介绍
2013/03/05 Javascript
JsRender for index循环索引用法详解
2014/10/31 Javascript
JavaScript替换当前页面的方法
2015/04/03 Javascript
AngularJS进行性能调优的7个建议
2015/12/28 Javascript
基于AngularJS前端云组件最佳实践
2016/10/20 Javascript
AngularJs基于角色的前端访问控制的实现
2016/11/07 Javascript
jquery UI Datepicker时间控件冲突问题解决
2016/12/16 Javascript
Vue学习笔记进阶篇之多元素及多组件过渡
2017/07/19 Javascript
Nodejs+angularjs结合multiparty实现多图片上传的示例代码
2017/09/29 NodeJs
JS实现登录页密码的显示和隐藏功能
2017/12/06 Javascript
koa-router源码学习小结
2018/09/07 Javascript
基于vue中keep-alive缓存问题的解决方法
2018/09/21 Javascript
vue.js的vue-cli脚手架中使用百度地图API的实例
2019/01/21 Javascript
微信小程序实现的一键拨号功能示例
2019/04/24 Javascript
vue中监听路由参数的变化及方法
2019/12/06 Javascript
js+canvas实现简单扫雷小游戏
2021/01/22 Javascript
详解如何用django实现redirect的几种方法总结
2018/11/22 Python
详解python中的生成器、迭代器、闭包、装饰器
2019/08/22 Python
Python 获取指定文件夹下的目录和文件的实现
2019/08/30 Python
python接口自动化之ConfigParser配置文件的使用详解
2020/08/03 Python
python中pow函数用法及功能说明
2020/12/04 Python
Python就将所有的英文单词首字母变成大写
2021/02/12 Python
如何查看浏览器对html5的支持情况
2020/12/15 HTML / CSS
一站式跨境收款解决方案:Payoneer(派安盈)
2018/09/06 全球购物
医院竞聘演讲稿
2014/05/16 职场文书
应届硕士毕业生自荐信
2014/05/26 职场文书
2014年挂职干部工作总结
2014/12/06 职场文书
SqlServer 垂直分表(减少程序改动)
2021/04/16 SQL Server
MySQL中datetime时间字段的四舍五入操作
2021/10/05 MySQL