配置Smarty

<?php
require("smarty/Smarty.class.php");
class SmartyProject extends Smarty{
function __construct(){
parent::__construct();
$this->template_dir="./";
$this->compile_dir="./system/templates_c/";
$this->config_dir="./system/configs/";
$this->cache_dir="./system/cache/";
}
}
?>

原文地址:https://www.cnblogs.com/hasayaki/p/2888434.html