Smarty

//载入核心文件php

include "./libs/Smarty.class.php";html

$smarty = new Smarty();缓存

//模版目录htm

$smarty->template_dir = "template";it

//模版目录class

$smarty->compile_dir = "temp/compile";配置

//配置文件im

$smarty->config_dir = "temp/config";smarty

//缓存配置文件

$smarty->cache_dir = "temp/cache";

//开始定界符

$smarty->left_delimiter = "{";

//结束定界符

$smarty->right_delimiter = "}";

var_dump($smarty); //模版载入 $smarty->display('index.html');

相关文章
相关标签/搜索