Smarty如何从模板文件中添加元标记

时间:2012-12-28 14:02:34

标签: php smarty meta-tags

我在PHP文件中使用的代码示例:

$title = "Test title";
$description = "test description";
$keywords = "test keywords";    
$smarty->assign('title',$title);
$smarty->assign('description',$description);
$smarty->assign('keywords',$keywords);    
$smarty->display('header.tpl');
$smarty->display('private.tpl');
$smarty->display('footer.tpl');

header.tpl中使用的代码

<title>{$title}</title>
<meta name="description" content="{$description}" />
<meta name="keywords" content="{$keywords}" />

是否可以在同一个php文件中显示不同的模板(例如private2.tpl)来显示包含在.tpl文件中的其他标签? 我必须在我的.tpl文件中插入什么代码(例如private2.tpl)

由于

1 个答案:

答案 0 :(得分:0)

试试这个:

{include file='private2.tpl'}