1

我想同时使用 codeigniter 和 smarty。即我想使用 html 文件而不是 smarty 的 codeigniter 的 .tpl.php 文件。这可能吗?或者我该怎么做?我搜索了很多,找到了一些例子,但没有一个符合我要求的作品。

4

2 回答 2

5

您应该创建一个库Smarty_tpl.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
//smarty class
require BASEPATH . "../../smarty/libs/Smarty.class.php";

class Smarty_tpl extends Smarty {

function __construct(){
    parent::__construct();

    $smarty_dir = BASEPATH . "../../smarty/libs/";

    $this->setTemplateDir(APPPATH."views/templates");
    $this->setCompileDir(APPPATH."views/templates_c");
    $this->setCacheDir(APPPATH."views/cache");
    $this->setConfigDir(APPPATH."views/config");
    $this->setPluginsDir(array("$smarty_dir/plugins","$smarty_dir/sysplugins/"));
    $this->compile_check=   true;
    $this->force_compile=   true;
    $this->caching=         true;
    $this->cache_lifetime=  86400;
}
}

及其使用:

$this->load->library("Smarty_tpl");
$this->smarty_tpl->display("...");
于 2012-04-24T12:07:02.417 回答
0

在 codeigniter 中有内置的模板库,为什么还要使用 smarty 呢?

于 2012-04-23T14:56:03.810 回答