刚才没有到,到网上找了找怎么配置smarty模板,没有想到,在网上看了几篇的与此有关的东东,
那些什么路径,把我搞到有些不想看.于是自己动手弄了弄,呵,没有成功.到我本机电脑上找了找与此相
关的资料.没有想到一会儿,弄好了.
弄好之后,在我看来,这个事实相当的简单,关键是路径问题.
这样就成功的建了一个smarty模板
<?php
include_once("./libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->template_dir = "./templates";
$smarty->complie_dir="./templates_c";
$smarty->left_delimiter="{{";
$smarty->right_delimiter="}}";
$smarty->assign('test','ok');
$smarty->display('test.html');
?>
呵,当然有一个test.html模板,
不过他要放到templates文件夹下
<body>
{{$test}}
</body>
那些什么路径,把我搞到有些不想看.于是自己动手弄了弄,呵,没有成功.到我本机电脑上找了找与此相
关的资料.没有想到一会儿,弄好了.
弄好之后,在我看来,这个事实相当的简单,关键是路径问题.
这样就成功的建了一个smarty模板
<?php
include_once("./libs/Smarty.class.php");
$smarty = new Smarty();
$smarty->template_dir = "./templates";
$smarty->complie_dir="./templates_c";
$smarty->left_delimiter="{{";
$smarty->right_delimiter="}}";
$smarty->assign('test','ok');
$smarty->display('test.html');
?>
呵,当然有一个test.html模板,
不过他要放到templates文件夹下
<body>
{{$test}}
</body>