博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CI框架集成Smarty
阅读量:4969 次
发布时间:2019-06-12

本文共 1153 字,大约阅读时间需要 3 分钟。

1.下载smarty源码包,解压放置于项目目录 libriaries中

2.在libraries中建立Cismarty.php ,填写如下代码

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'); $this->left_delimiter = '<{'; $this->right_delimiter = '}>'; }}

3.在项目目录的config文件夹内新建文件smarty.php文件,里面的内容如下:

4.在入口文件所在目录新建文件夹templates_c、cache、configs; 

5.在项目目录下面的config目录中找到autoload.php文件  

$autoload['libraries'] = array('Cismarty');

6.在项目目录的core文件夹中新建文件MY_Controller.php 内容如下:

cismarty->assign($key,$val); } public function display($html) { $this->cismarty->display($html); }}

以上,配置完毕。

 

转载于:https://www.cnblogs.com/hejun695/p/5360053.html

你可能感兴趣的文章
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
SQLite移植手记1
查看>>
js05-DOM对象二
查看>>
mariadb BINLOG_FORMAT = STATEMENT 异常
查看>>