我想一起使用codeigniter和smarty.i.e。我想使用html文件而不是smartign的codeigniter的.tpl.php文件。这是可能的,或者我怎么能这样做。我已经搜索了很多并找到了一些例子,但没有一些像我所要求的那样有效。
答案 0 :(得分: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("...");
答案 1 :(得分:0)
在codeigniter中有内置的模板库,为什么还要使用smarty?