Smarty 框架的模板继承是通过使用布局(layout)和块(block)的概念来实现的。这种方法可以让你创建一个基本的骨架模板,其中包含所有页面共享的元素,如页眉、页脚和其他公共部分。然后,你可以在子模板中覆盖和插入内容到这些块中,从而实现样式的灵活性和代码的重用。
以下是使用 Smarty 模板继承的基本步骤:
<!DOCTYPE html>
<html>
<head>
<title>{block name="title" /}</title>
</head>
<body>
<header>{block name="header" /}</header>
<main>{block name="content" /}</main>
<footer>{block name="footer" /}</footer>
</body>
</html>
在这个例子中,我们定义了四个块:title、header、content 和 footer。
{extends file="layout.tpl"}
{block name="title"}Child Page Title{/block}
{block name="header"}
<p>This is the child page header.</p>
{/block}
{block name="content"}
<p>This is the child page content.</p>
{/block}
{block name="footer"}
<p>This is the child page footer.</p>
{/block}
在这个例子中,我们使用 {extends}
标签来指定要继承的布局文件,并使用 {block}
标签来覆盖和插入内容到布局文件中的块。
assign
函数来设置要传递给模板的数据,并使用 display
函数来显示模板。例如:<?php
require_once 'Smarty.class.php';
$smarty = new Smarty();
$smarty->assign('title', 'Child Page');
$smarty->display('child.tpl');
?>
这将使用 child.tpl 模板,并传递一个名为 “title” 的变量。然后,child.tpl 将使用布局文件,并替换其中的块。
通过这种方式,你可以创建一个可重用的布局模板,并在多个子模板中轻松维护和扩展。