时间:2021-05-28
本文实例讲述了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中写入使用方法,代码如下:
<?phpdefined('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即可看到测试结果。
更多关于CodeIgniter相关内容感兴趣的读者可查看本站专题:《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《php优秀开发框架总结》、《ThinkPHP入门教程》、《ThinkPHP常用方法总结》、《Zend FrameWork框架入门教程》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家基于CodeIgniter框架的PHP程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了CodeIgniter整合Smarty的方法。分享给大家供大家参考,具体如下:CI3.0.2发布后感觉模板类还是不怎么好用,而且不能编译。Smar
本文详细讲述了CI框架整合smarty步骤。分享给大家供大家参考,具体如下:Ci结合smarty的配置步骤:1.第一步配置ci和下载smarty的模板个人喜欢用
本文实例讲述了ZendFramework框架Smarty扩展实现方法。分享给大家供大家参考,具体如下:今天总结一下ZF框架中扩展Smarty模板的方法,在ZF帮
本文实例讲述了CodeIgniter集成smarty的方法。分享给大家供大家参考,具体步骤如下:1.下载smarty解压到ci的libraries目录如:ci/
本文实例讲述了Codeigniter中集成smarty和adodb的方法。分享给大家供大家参考,具体如下:在CodeIgniter中要写自己的库,就需要写两个文