- 论坛徽章:
- 0
|
解压缩出来的目录的libs/拷贝到/var/www/html/smarty/里,再在smarty/里新建templates目录,templates里新建cache/,templates/,templates_c/, config/
(2) 新建一个模板文件:index.tpl,将此文件放在learn/smarty/templates/templates目录下,代码如下:
{$hello}
新建index.PHP,将此文件放在learn/下:
<?PHP
//引用类文件
require 'smarty/libs/Smarty.class.php';
$smarty = new Smarty;
//设置各个目录的路径,这里是安装的重点
$smarty->template_dir = "smarty/templates/templates";
$smarty->compile_dir = "smarty/templates/templates_c";
$smarty->config_dir = "smarty/templates/config";
$smarty->cache_dir = "smarty/templates/cache";
//smarty模板有高速缓存的功能,如果这里是true的话即打开caching,但是会造成网页不立即更新的问题,当然也可以通过其他的办法解决
$smarty->caching = false;
$hello = "Hello World!";
//赋值
$smarty->assign("hello",$hello);
//引用模板文件
$smarty->display('index.tpl'); ?>
结果显示{hello};而不是Hello World!了
[ 本帖最后由 jiangtao0506 于 2009-5-6 16:05 编辑 ] |
|