php 的smarty的用法
3个回答
展开全部
给你写个最简单的 其他去网上荡资料吧。
php文件里写
//引用smarty模板
include 'Smarty/Smarty.class.php';
//实例化
$smarty = new Smarty;
//配置smarty
//配置模板文件夹路径
$smarty->template_dir = 'templates';
//配置编译文件夹路径
$smarty->compile_dir = 'templates_c';
//配置缓存文件夹路径
$smarty->cache_dir = 'datas';
//指派$_GET['text'] 给val val 是在html页面中调用的值
$smarty->assign('val',$_GET['text'].'hello word');
$smarty->display('text.html');
html页面写:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form action="" method="post">
<input type="text" name="text" value="{$val}"/>
<input type="submit" value="提交"/>
</form>
</body>
</html>
这样就实现了模板与php的分离
php文件里写
//引用smarty模板
include 'Smarty/Smarty.class.php';
//实例化
$smarty = new Smarty;
//配置smarty
//配置模板文件夹路径
$smarty->template_dir = 'templates';
//配置编译文件夹路径
$smarty->compile_dir = 'templates_c';
//配置缓存文件夹路径
$smarty->cache_dir = 'datas';
//指派$_GET['text'] 给val val 是在html页面中调用的值
$smarty->assign('val',$_GET['text'].'hello word');
$smarty->display('text.html');
html页面写:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form action="" method="post">
<input type="text" name="text" value="{$val}"/>
<input type="submit" value="提交"/>
</form>
</body>
</html>
这样就实现了模板与php的分离
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
主要多练练。下一些别人的例子。然后自己再自己做一下。很快上手的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询