codeIgniter集成smarty

这几天看了看codeIgniter 挺不错的  mvc模式 之前没用过 这次打算尝试下
但是它的view感觉不如smarty 所以网上找了些帖子 把smarty集成进来用

1.下载smarty
解压到ci的libraries目录 如: ci/application/libraries/Smarty-2.6.20

2.编写Mysmarty.php 自己的类库文件

代码如下:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

require "Smarty-2.6.20/libs/Smarty.class.php";

/**
* @file system/application/libraries/Mysmarty.php
*/
class Mysmarty extends Smarty
{
    function Mysmarty()
    {
        $this->Smarty();

        $config =& get_config();
       
        // absolute path prevents "template not found" errors
        $this->template_dir = (!empty($config['smarty_template_dir']) ? $config['smarty_template_dir'] : BASEPATH . 'application/views/');
                                                                   
        $this->compile_dir  = (!empty($config['smarty_compile_dir']) ? $config['smarty_compile_dir'] : BASEPATH . 'cache/');
        //use CI's cache folder       
       
        if (function_exists('site_url')) {
            // URL helper required
            $this->assign("site_url", site_url()); // so we can get the full path to CI easily
        }
    }
   
    /**
    * @param $resource_name string
    * @param $params array holds params that will be passed to the template
    * @desc loads the template
    */
    function view($resource_name, $params = array())   {
        if (strpos($resource_name, '.') === false) {
            $resource_name .= '.html';
        }
       
        if (is_array($params) && count($params)) {
            foreach ($params as $key => $value) {
                $this->assign($key, $value);
            }
        }
       
        // check if the template file exists.
        if (!is_file($this->template_dir . $resource_name)) {
            show_error("template: [$resource_name] cannot be found.");
        }
       
        return parent::display($resource_name);
    }
} // END class smarty_library
?>

3.在autoload.php让ci自动加载smarty

$autoload['libraries'] = array('database', 'mysmarty');

或者 使用模板时再自己加载smarty

$this->load->library("mysmarty");

4.smarty变量赋值 display模板

$this->mysmarty->assign('test', 'Hello World.');
$this->mysmarty->view('smarty');


注:images css 等外部资源文件 放在ci系统文件夹外 网站根目录下

最好用
$this->load->helper('url');
base_url()来访问

base_url()."images/xxx.jpg"
不要放到system里

参考网页:
http://devcha.blogspot.com/2007/12/smarty-as-template-engine-in-code.html

示例来自:
http://funcs.org/downloads/code-igniter/code-igniter-smarty-2.zip
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 4
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值