Codeigniter中集成smarty和adodb的方法


Posted in PHP onMarch 04, 2016

本文实例讲述了Codeigniter中集成smarty和adodb的方法。分享给大家供大家参考,具体如下:

在CodeIgniter中要写自己的库,就需要写两个文件,一个是在application/init下面的init_myclass.php文件(如果没有init目录,自己创建)。另外一个就是在application/libraries目录下创建myclass.php文件。

这里myclass是你的类名。一些规则大家看手册就好了,我这里直接就说步骤了。

1)在application/libraries下分别创建mysmarty.php和adodb.php
mysmarty.php文件的内容如下:

<?php
// load Smarty library
require('Smarty/Smarty.class.php');
// The setup.php file is a good place to load
// required application library files, and you
// can do that right here. An example:
// require('guestbook/guestbook.lib.php');
class MySmarty extends Smarty {
 function MySmarty()
 {
    // Class Constructor.
    // These automatically get set with each new instance.
    $this->Smarty();
    $basedir=dirname(__FILE__);
    $this->template_dir = "$basedir/templates/";
    $this->compile_dir = "$basedir/templates_c/";
    $this->config_dir  = "$basedir/configs/";
    $this->cache_dir  = "$basedir/cache/";
    //$this->compile_check = true;
    //this is handy for development and debugging;never be used in a production environment.
    //$smarty->force_compile=true;
    $this->debugging = false;
    $this->cache_lifetime=30;
    $this->caching = 0; // lifetime is per cache
    //$this->assign('app_name', 'Guest Book');
 }
}
?>

文件路径根据具体情况修改,文件的的路径是相对你的网站的主目录开始的,而不是当前文件的当前目录,比如上面的require('Smarty/Smarty.class.php');不是相对application/libraries目录,而是相对$_SERVER['DOCUMENT_ROOT']目录。

adodb.php文件的内容如下:

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Adodb
{
  function Adodb()
  {
    //$dsn="dbdriver://username:password@server/database"
    $dsn = 'mysql://user:password@localhost/xxxx';
    require_once("adodb/adodb.inc".EXT);
    $this->adodb =& ADONewConnection($dsn);
    $this->adodb->Execute("set NAMES 'utf8'"); 
  }
}
?>

2)在application/init目录下分别创建init_adodb.php和init_mysmarty.php。

init_adodb.php文件内容如下:

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
$obj =& get_instance();
$obj->adodb = new Adodb($obj);
$obj->ci_is_loaded[] = 'adodb';

init_mysmarty.php文件内容如下:

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
if ( ! class_exists('MySmarty'))
{
  require_once(APPPATH.'libraries/mysmarty'.EXT);
}
$obj =& get_instance();
$obj->mysmarty = new MySmarty();
$obj->ci_is_loaded[] = 'mysmarty';
?>

3)使用他们
在application/controllers目录下创建一个你需要的文件,你可以这样来使用adodb和smarty。

<?php
class Test extends Controller {
 function Test()
 {
  parent::Controller(); 
  $this->load->library('mysmarty');
  $this->load->library('adodb');
 }
 function index()
 {
 $this->load->library('adodb');
 $row = $this->adodb->adodb->getrow('SELECT * FROM admin');
    $this->mysmarty->assign("row",$row);
    $this->mysmarty->display("test.tpl");
 }
}
?>

我也不知道这里为什么需要两次adodb,按照官方的做法应该只需要一次,但是他的方法在我这里有错误。可能是我对CodeIgniter还不太了解吧,等深入一些,再看看有没有解决办法。不过至少目前这个可以工作了。

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
php mysql索引问题
Jun 07 PHP
php 无限分类的树类代码
Dec 03 PHP
php mysql_real_escape_string函数用法与实例教程
Sep 30 PHP
php过滤所有恶意字符(批量过滤post,get敏感数据)
Mar 18 PHP
php冒泡排序、快速排序、快速查找、二维数组去重实例分享
Apr 24 PHP
ThinkPHP3.1的Widget新用法
Jun 19 PHP
php判断GIF图片是否为动画的方法
Sep 04 PHP
php网站被挂木马后的修复方法总结
Nov 06 PHP
页面利用渐进式JPEG来提升用户体验度
Dec 01 PHP
PHP Echo字符串的连接格式
Mar 07 PHP
php文件上传后端处理小技巧
May 22 PHP
PHP面向对象程序设计模拟一般面向对象语言中的方法重载(overload)示例
Jun 13 PHP
PHP常用技巧汇总
Mar 04 #PHP
将PHP程序中返回的JSON格式数据用gzip压缩输出的方法
Mar 03 #PHP
PHP的数组中提高元素查找与元素去重的效率的技巧解析
Mar 03 #PHP
CodeIgniter针对数据库的连接、配置及使用方法
Mar 03 #PHP
CodeIgniter表单验证方法实例详解
Mar 03 #PHP
PHP6新特性分析
Mar 03 #PHP
php轻松实现文件上传功能
Mar 03 #PHP
You might like
基于PHP字符串的比较函数strcmp()与strcasecmp()的使用详解
2013/05/15 PHP
PHP中使用CURL模拟登录并获取数据实例
2014/07/01 PHP
WordPress中获取所使用的模板的页面ID的简单方法
2015/12/31 PHP
Laravel与CI框架中截取字符串函数
2016/05/08 PHP
详解PHP原生DOM对象操作XML的方法
2016/10/17 PHP
ThinkPHP5框架缓存查询操作分析
2018/05/30 PHP
Yii框架核心组件类实例详解
2019/08/06 PHP
javascript[js]获取url参数的代码
2007/10/17 Javascript
基于jQuery的Spin Button自定义文本框数值自增或自减
2010/07/17 Javascript
你未必知道的JavaScript和CSS交互的5种方法
2014/04/02 Javascript
JS选取DOM元素的简单方法
2016/07/08 Javascript
浅谈Javascript中的12种DOM节点类型
2016/08/19 Javascript
Angular学习笔记之angular的$filter服务浅析
2016/11/12 Javascript
js前端日历控件(悬浮、拖拽、自由变形)
2017/03/02 Javascript
BootStrap实现文件上传并带有进度条效果
2017/09/11 Javascript
axios发送post请求,提交图片类型表单数据方法
2018/03/16 Javascript
为jquery的ajax请求添加超时timeout时间的操作方法
2018/09/04 jQuery
vue+iview动态渲染表格详解
2019/03/19 Javascript
微信小程序自定义单项选择器样式
2019/07/25 Javascript
一篇文章带你搞懂Vue虚拟Dom与diff算法
2020/08/25 Javascript
原生js实现九宫格拖拽换位
2021/01/26 Javascript
[15:41]教你分分钟做大人——灰烬之灵
2015/03/11 DOTA
[43:43]完美世界DOTA2联赛PWL S2 LBZS vs Forest 第三场 11.29
2020/12/02 DOTA
Python MySQLdb模块连接操作mysql数据库实例
2015/04/08 Python
Python将图片批量从png格式转换至WebP格式
2020/08/22 Python
Python之用户输入的实例
2018/06/22 Python
详解Python中第三方库Faker
2020/09/25 Python
Python __slots__的使用方法
2020/11/15 Python
阿里旅行:飞猪
2017/01/05 全球购物
英国第一家领先的在线处方眼镜零售商:Glasses Direct
2018/02/23 全球购物
美国第二大连锁药店:Rite Aid
2019/04/03 全球购物
预备党员的自我评价
2014/03/12 职场文书
扶贫办主任查摆“四风”问题个人对照检查材料思想汇报
2014/10/02 职场文书
创先争优活动个人总结
2015/03/04 职场文书
导游词之京东大峡谷旅游区
2019/10/29 职场文书
mybatis调用sqlserver存储过程返回结果集的方法
2021/05/08 SQL Server