最近学习了smarty准备整合进CI框架中,下面分享一下我的整和经验
1.首先解压smarty的libs目录到CI目录application\libraries下面,并改名为smarty
2.在项目目录的libraries文件夹内新建文件Ci_smarty.php
1 |
|
3.在项目目录的config文件夹内新建文件smarty.php文件
1 |
|
4.在views目录下建template_c cache config三个文件夹,一定要记住把这三个文件夹权限改成777
sudo chmod 777 template_c cache config
5.在项目的配置文件夹下,autoload.php文件中修改
$autoload['libraries'] = array();
改成
$autoload['libraries'] = array('ci_smarty');
6.测试
controller下新建一个Home.php
1 |
|
views下新建一个test.html
1 |
|
效果图