瞎逛悠
高级会员

无欲则刚
UID 64733
精华
0
积分 560
帖子 230
金钱 560 喜悦币
威望 0
人脉 0
阅读权限 50
注册 2005-6-14
状态 离线
|
[推荐阅读] 诚聘SMS技术人员(上海)
SMARTY就是一个libs文件夹copy到项目根目录下
然后在调用
<?php
define("ROOT_DIR","/libs/");
require(ROOT_DIR."Smarty.class.php");
class test extends Smarty {
/*smarty配置*/
function test()
{
$this->left_delimiter = "<{";
$this->right_delimiter = "}>";
$this->template_dir = ROOT_DIR.'templates/';
$this->compile_dir = ROOT_DIR.'templates_c/';
$this->config_dir = ROOT_DIR.'configs/';
$this->cache_dir = ROOT_DIR.'cache/';
}
|  person help person. |
|