php框架ci配置smarty详细教程笔记

smarty3.0下载:Smarty-3.0rc3

需要用ci来写一个后台配置smarty,在网络上能够找到一些相关的文章.但是都是比较旧的内容,大部分是smary2.*的配置方法.按照这个配置后会出现一些错误.其实配置看smary官方会比较简单.

基础
在php中使用smarty的用法

  1. require_once(‘Smarty.class.php’);
  2. $smarty = new Smarty();

这里就可以使用对象$smarty的assign和display对象来解析模板.在ci里面使用时为了在controller里面来使用这两个函数.

配置
smarty里面有4个需要配置的项

  1. $smarty->setTemplateDir( …);
  2. $smarty->setCompileDir(… );
  3. $smarty->setConfigDir( …);
  4. $smarty->setCacheDir(… );

那么我们在ci的config里面创建一个smarty.php的文件,并加入4个变量.其中APPPATH的值为application目录.创建’templates_c’,其他三个文件夹ci里面都存在.

  1. <?php  if ( ! defined(‘BASEPATH’)) exit(‘No direct script access allowed’);
  2. $config[‘template_dir’] = APPPATH . ‘views’;
  3. $config[‘compile_dir’]  = APPPATH . ‘templates_c’;
  4. $config[‘cache_dir’]    = APPPATH . ‘cache’;
  5. $config[‘config_dir’]   = APPPATH . ‘config’;

类库
首先将smarty的lib目录复制到ci的libraries目录,并改名为smarty.在libraries里面创建一个ci_smarty.php的文件.这里主要是加载配置文件等.

  1. <?php
  2. if(!defined(‘BASEPATH’)) EXIT(‘No direct script asscess allowed’);
  3. require_once( APPPATH . ‘libraries/smarty/Smarty.class.php’ );
  4. class Ci_smarty extends Smarty {
  5.     protected $ci;
  6.     public function  __construct(){
  7.         parent::__construct();
  8.         $this->ci = & get_instance();
  9.         $this->ci->load->config(‘smarty’);//加载smarty的配置文件 
  10.         //获取相关的配置项 
  11.         // $this->template_dir= .. ;这是2.*的方法,3.1之后修改为 getXXX setXXX 
  12.         $this->setTemplateDir($this->ci->config->item(‘template_dir’));
  13.         $this->setCompileDir($this->ci->config->item(‘compile_dir’));
  14.         $this->setCacheDir($this->ci->config->item(‘cache_dir’));
  15.         $this->setConfigDir($this->ci->config->item(‘config_dir’));
  16.     }
  17. }

然后在config/autoload.php里面设置自动加载Ci_smarty

  1. $autoload[‘libraries’] = array(‘ci_smarty’);

自定义控制器
在core文件夹添加一个My_Controller.php的自定义控制器.将smarty的assign和display两个函数添加进入.

  1. <?php  if(!defined(‘BASEPATH’)) EXIT(‘No direct script asscess allowed’);
  2. class MY_Controller extends CI_Controller {
  3.     public function __construct() {
  4.         parent::__construct();
  5.     }
  6.     public function assign($key,$val) {
  7.         $this->ci_smarty->assign($key,$val);
  8.     }
  9.     public function display($html) {
  10.         $this->ci_smarty->display($html);
  11.     }
  12. }

将控制器继承自My_Controller就可以使用这两个函数了.

实例
控制器继承需要修改为My_Controller

  1. <?php if ( ! defined(‘BASEPATH’)) exit(‘No direct script access allowed’);
  2. class Welcome extends My_Controller {
  3.     public function index()
  4.     {
  5.         //$this->load->view(‘welcome_message’);
  6.         $data[“title”]=“标题”;
  7.         $data[“num”]=“123123”;
  8.         $this->assign(‘data’,$data);
  9.         $this->display(“index.html”);
  10.     }
  11. }

view文件夹中的index.html文件

  1. <html>
  2. <head>
  3.     <title>{$data.title}</title>
  4. </head>
  5. <body>
  6. <p>{$data.num}</p>
  7. </body>
  8. </html>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

www.admin122.com 关注微信
24小时客服在线