国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > PHP > 正文

Codeigniter中集成smarty和adodb的方法

2024-05-04 23:43:31
字體:
供稿:網(wǎng)友
這篇文章主要介紹了Codeigniter中集成smarty和adodb的方法,結(jié)合實(shí)例形式分析了Codeigniter庫的使用技巧,需要的朋友可以參考下
 

本文實(shí)例講述了Codeigniter中集成smarty和adodb的方法。分享給大家供大家參考,具體如下:

在CodeIgniter中要寫自己的庫,就需要寫兩個(gè)文件,一個(gè)是在application/init下面的init_myclass.php文件(如果沒有init目錄,自己創(chuàng)建)。另外一個(gè)就是在application/libraries目錄下創(chuàng)建myclass.php文件。

這里myclass是你的類名。一些規(guī)則大家看手冊就好了,我這里直接就說步驟了。

1)在application/libraries下分別創(chuàng)建mysmarty.php和adodb.php
mysmarty.php文件的內(nèi)容如下:

<?php// load Smarty libraryrequire('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'); }}?>

文件路徑根據(jù)具體情況修改,文件的的路徑是相對你的網(wǎng)站的主目錄開始的,而不是當(dāng)前文件的當(dāng)前目錄,比如上面的require('Smarty/Smarty.class.php');不是相對application/libraries目錄,而是相對$_SERVER['DOCUMENT_ROOT']目錄。

adodb.php文件的內(nèi)容如下:

<?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目錄下分別創(chuàng)建init_adodb.php和init_mysmarty.php。

init_adodb.php文件內(nèi)容如下:

<?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文件內(nèi)容如下:

<?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目錄下創(chuàng)建一個(gè)你需要的文件,你可以這樣來使用adodb和smarty。

<?phpclass 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,按照官方的做法應(yīng)該只需要一次,但是他的方法在我這里有錯(cuò)誤。可能是我對CodeIgniter還不太了解吧,等深入一些,再看看有沒有解決辦法。不過至少目前這個(gè)可以工作了。



注:相關(guān)教程知識閱讀請移步到PHP教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 贵定县| 长白| 上思县| 屏山县| 乐昌市| 义乌市| 永寿县| 汽车| 伊吾县| 依兰县| 宁波市| 溧阳市| 岢岚县| 乌拉特后旗| 图木舒克市| 信宜市| 时尚| 安新县| 胶南市| 乐山市| 开化县| 习水县| 敖汉旗| 井冈山市| 仙居县| 黄龙县| 泽州县| 大埔县| 大足县| 重庆市| 台北市| 新竹县| 阳东县| 枝江市| 潢川县| 漠河县| 河池市| 潼关县| 阆中市| 昌邑市| 周宁县|