当前位置:首页 > CMS教程 > 其它CMS > 列表

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,写如下代码:

  1. <?php 
  2. /** 
  3. * ======================================= 
  4. * Created by PK Technology. 
  5. * Author: ZhiHua_W 
  6. * Date: 2016/10/31 0031 
  7. * Time: 上午 9:16 
  8. * Project: CI整合 
  9. * Power: CI框架整合smarty 
  10. * ======================================= 
  11. */ 
  12. defined('BASEPATH') OR exit('No direct script access allowed'); 
  13. require(APPPATH . 'libraries/smarty/Smarty.class.php'); 
  14. class CI_Smarty extends Smarty 
  15.     public function __construct($template_dir = ''$compile_dir = ''$config_dir = ''$cache_dir = ''
  16.     { 
  17.       parent::__construct(); 
  18.       if (is_array($template_dir)) { 
  19.         foreach ($template_dir as $key => $value) { 
  20.           $this->$key = $value
  21.         } 
  22.       } else { 
  23.         //ROOT是Codeigniter在入口文件index.php定义的本web应用的根目录 
  24.         $this->template_dir = $template_dir ? $template_dir : ROOT . '/templates'
  25.         $this->compile_dir = $compile_dir ? $compile_dir : ROOT . '/templates_c'
  26.         $this->config_dir = $config_dir ? $config_dir : ROOT . '/config'
  27.         $this->cache_dir = $cache_dir ? $cache_dir : ROOT . '/cache'
  28.       } 
  29.     } 

4、在controller中使用

在控制器Welcome.php中写入使用方法,代码如下:

  1. <?php 
  2. defined('BASEPATH') OR exit('No direct script access allowed'); 
  3. class Welcome extends CI_Controller 
  4.     /** 
  5.      * Welcome constructor. 
  6.      * 写入构造函数,引入CI_Smarty类文件 
  7.      */ 
  8.     public function __construct() 
  9.     { 
  10.       parent::__construct(); 
  11.       $this->load->library('CI_Smarty'); 
  12.     } 
  13.     /** 
  14.      * smarty测试函数 
  15.      */ 
  16.     public function test() 
  17.     { 
  18.       $this->ci_smarty->assign('test''smarty'); 
  19.       $this->ci_smarty->display('test.tpl'); 
  20.     } 

5、创建模版试图

在templates文件夹下创建test.tpl文件,写入如下代码:

  1. <!DOCTYPE html> 
  2. <html lang="en"> 
  3. <head> 
  4.   <meta charset="UTF-8"> 
  5.   <title>Codeigniter整合Smarty测试</title> 
  6. </head> 
  7. <body> 
  8. 这是 {$test} 测试 
  9. </body> 
  10. </html> 

6、访问

至此,我们整合完毕,访问:http://localhost/Codeigniter_Smarty/index.php/Welcome/test即可看到测试结果。

Tags: CodeIgniter Smarty DEMO

分享到: