Smarty是一个用PHP编写的模板引擎,它允许将业务逻辑和表示逻辑分离,提供了更好的模板设计和维护。在Smarty框架中,模板文件是纯HTML,其中可以包含一些变量和逻辑控制语句。
使用Smarty框架的步骤如下:
composer require smarty/smarty
require_once('vendor/autoload.php');
$smarty = new Smarty();
$smarty->setTemplateDir('templates/');
$smarty->setCompileDir('templates_c/');
$smarty->setCacheDir('cache/');
$smarty->assign('title', 'Welcome to My Website');
$smarty->assign('content', 'This is the content of my website');
<!DOCTYPE html>
<html>
<head>
<title>{$title}</title>
</head>
<body>
<h1>{$content}</h1>
</body>
</html>
$smarty->display('index.tpl');
通过以上步骤,你可以使用Smarty框架来更好地管理和显示你的模板文件。Smarty还提供了很多其他功能,例如循环、条件语句、包含文件等,可以根据具体需求进行灵活运用。