/**
*
* @version $Id: index.php
* @package
* @author www.php100.com
* @action 显示实例程序
*/
include_once("./Smarty/Smarty.class.php")//包含smarty类文件
$smarty = new Smarty()//建立smarty实例对象$smarty
$smarty->templates("./templates")//设置模板目录
$smarty->templates_c("./templates_c")//设置编译目录
$smarty->cache("./cache")//缓存目录
$smarty->cache_lifetime = 0//缓存时间
$smarty->caching = true//缓存方式
$smarty->left_delimiter = "{#"
$smarty->right_delimiter = "#}"
$smarty->assign("name", "zaocha")//进行模板变量替换
$smarty->display("index.htm")//编译并显示位于./templates下的index.htm模板
?>
参考:smarty半小时快速上手教程
http://www.chinaz.com/program/2010/0224/107006.shtml
{include file="1.html" title="标题" name="名称" password="密码"}页面中插入1.html文件
在1.html文件中可用{$title}调用标题,{$name}调用名称,{$password}调用密码
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)