php之Smarty模板使用方法示例详解(2)

1、libs:是Smarty类库
2、tpl/cache_dir:存放缓存模板
3、tpl/compile_dir:存放编译后模板文件
4、tpl/config_dir:存放特殊配置文件
5、tpl/template_dir:存放模板文件
6、smarty.php文件里 new 出了一个 Smarty类对象,并设定各对象的属性值,如下代码

<?php require 'libs/Smarty.class.php';//加载Smarty.class.php文件 define('SITE_ROOT','./tpl/');//定义一个常量 $tpl = new Smarty(); $tpl->template_dir = SITE_ROOT . 'template_dir';//存模板文件 $tpl->compile_dir = SITE_ROOT . 'compile_dir';//存编译过的模板文件 $tpl->config_dir = SITE_ROOT . 'config_dir';//存特殊配置文件 $tpl->cache_dir = SITE_ROOT . 'cache_dir';//存Smarty缓存文件 $tpl->caching = 1;//启用缓存 $tpl->cache_lifetime = 60*60*24;//缓存时间1天 $tpl->left_delimiter = '<{';//左结束符 $tpl->right_delimiter = '}>';//右结束符

7、index.php文件 首页代码如下

<?php require 'smarty.php'; $tpl->assign('title','title测试'); $tpl->assign('content','content测试'); $tpl->display('template.html');

8、tpl/template_dir/template.html 这是一个模板文件 代码如下

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> <{$title}> </title> </head> <body> <{$content}> </body> </html>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/955176e2e851accbcbddcab818f9f6b9.html