不用配置。
下面是我用快速模板写的新闻发布程序中一小段:
<?
include_once('../include/class.FastTemplate.php');
$tpl = new FastTemplate("./modules");
$tpl->define(array( main => "mainindex.tpl",
head => "head.tpl",
top => "top.tpl",
left => "left.tpl",
center => "center.tpl",
bottom => "bottom.tpl"));
$tpl->assign(TITLE,"");
$tpl->assign(SITE_NAME, "新闻首页");
……
$tpl->parse(common_top, top);
$tpl->parse(common_head,head);
$tpl->parse(common_left,left);$tpl->parse(common_bottom,bottom);
$tpl->parse(MAIN,main);
$tpl->FastPrint("MAIN");
exit();
?>