我想我together.ie想要使用HTML文件,而不是笨的.tpl.php文件作为智者的使用笨和智者。 这是可能的,或者我怎么能干这事已经搜索了很多,找到一些例子,但所要求的我没有一些作品。
Answer 1:
您应该创建一个库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("...");
Answer 2:
还有就是建在笨模板化图书馆何必用智者?
文章来源: using smarty with codeigniter