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還提供了很多其他功能,例如循環、條件語句、包含文件等,可以根據具體需求進行靈活運用。