我真的很搜索,但一无所获。
我是模板精简版的新手。我添加了我的项目template_lite库,我有两个文件。
test.php是:
require("../src/class.template.php");
$tpl = new Template_Lite;
$tpl->assign("foo","bar");
和test.html是
<html>
<head>
<title>Document Title</title>
</head>
<body>
{$foo}
</body>
</html>
输出错误:"{$foo}"
答案 0 :(得分:0)
根据documentation,您需要设置两个变量:
加载Template后需要设置两个变量 Lite:$ template_dir和$ compile_dir。
require('/path/to/class.template.php');
$tpl = new Template_Lite;
$tpl->compile_dir = "compiled/";
$tpl->template_dir = "templates/";