CodeIgniter框架实现的整合Smarty引擎DEMO示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-14 12:33:08 浏览: 评论:0
这篇文章主要介绍了CodeIgniter框架实现的整合Smarty引擎DEMO,结合实例形式分析了CodeIgniter框架整合Smarty引擎的原理、操作步骤及相关实现技巧,需要的朋友可以参考下。
本文实例讲述了CodeIgniter框架实现的整合Smarty引擎。分享给大家供大家参考,具体如下:
Smarty的模板机制很强大,一般情况下CI框架无需整合其他模板标签,因为PHP本身就是一种标签,简单易用,Codeigniter整合Smarty教程(我用的都是最新版本)如下:
第一步:下载Codeigniter最新版本:CodeIgniter框架源码
第二步:下载Smarty最新版本:Smarty引擎源码
第三步:具体配置
我已将本人整合好的代码上传,有兴趣的可以下载阅读。Codeigniter框架整合Smarty引擎DEMO 。
1、准备
将smarty拷贝到application/libraries下,然后再根目录下下新建templates,templates_c,config,cache目录,结构如下:
2、修改入口文件
在入口文件index.php中新增:
define('ROOT', dirname(__FILE__));
3、新建CI_Smarty.php
在libraries文件下新建CI_Smarty.php,写如下代码:
- <?php
- /**
- * =======================================
- * Created by PK Technology.
- * Author: ZhiHua_W
- * Date: 2016/10/31 0031
- * Time: 上午 9:16
- * Project: CI整合
- * Power: CI框架整合smarty
- * =======================================
- */
- defined('BASEPATH') OR exit('No direct script access allowed');
- require(APPPATH . 'libraries/smarty/Smarty.class.php');
- class CI_Smarty extends Smarty
- {
- public function __construct($template_dir = '', $compile_dir = '', $config_dir = '', $cache_dir = '')
- {
- parent::__construct();
- if (is_array($template_dir)) {
- foreach ($template_dir as $key => $value) {
- $this->$key = $value;
- }
- } else {
- //ROOT是Codeigniter在入口文件index.php定义的本web应用的根目录
- $this->template_dir = $template_dir ? $template_dir : ROOT . '/templates';
- $this->compile_dir = $compile_dir ? $compile_dir : ROOT . '/templates_c';
- $this->config_dir = $config_dir ? $config_dir : ROOT . '/config';
- $this->cache_dir = $cache_dir ? $cache_dir : ROOT . '/cache';
- }
- }
- }
4、在controller中使用
在控制器Welcome.php中写入使用方法,代码如下:
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class Welcome extends CI_Controller
- {
- /**
- * Welcome constructor.
- * 写入构造函数,引入CI_Smarty类文件
- */
- public function __construct()
- {
- parent::__construct();
- $this->load->library('CI_Smarty');
- }
- /**
- * smarty测试函数
- */
- public function test()
- {
- $this->ci_smarty->assign('test', 'smarty');
- $this->ci_smarty->display('test.tpl');
- }
- }
5、创建模版试图
在templates文件夹下创建test.tpl文件,写入如下代码:
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Codeigniter整合Smarty测试</title>
- </head>
- <body>
- 这是 {$test} 测试
- </body>
- </html>
6、访问
至此,我们整合完毕,访问:http://localhost/Codeigniter_Smarty/index.php/Welcome/test即可看到测试结果。
Tags: CodeIgniter Smarty DEMO
相关文章
- ·CodeIgniter3.0+框架自定义异常处理的方法介绍(2020-02-08)
- ·解决Codeigniter不能上传rar和zip压缩包问题(2020-10-19)
- ·CodeIgniter框架中_remap()使用方法2例(2020-10-20)
- ·CI(CodeIgniter)框架中的增删改查操作(2021-02-11)
- ·CodeIgniter启用缓存和清除缓存的方法(2021-02-13)
- ·让CodeIgniter数据库缓存自动过期的处理的方法(2021-02-13)
- ·Codeigniter生成Excel文档的简单方法(2021-02-13)
- ·Codeigniter+PHPExcel实现导出数据到Excel文件(2021-02-13)
- ·Codeigniter实现智能裁剪图片的方法(2021-02-13)
- ·Codeigniter整合Tank Auth权限类库详解(2021-02-18)
- ·新浪SAE云平台下使用codeigniter的数据库配置(2021-02-18)
- ·Codeigniter实现处理用户登录验证后的URL跳转(2021-02-18)
- ·让codeigniter与swfupload整合的最佳解决方案(2021-02-18)
- ·Codeigniter实现多文件上传并创建多个缩略图(2021-02-18)
- ·让CodeIgniter的ellipsize()支持中文截断的方法(2021-02-18)
- ·CodeIgniter框架过滤HTML危险代码(2021-02-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)