要使用Smarty生成靜態網頁,首先需要安裝Smarty模板引擎。然后按照以下步驟進行操作:
require_once('smarty/Smarty.class.php');
$smarty = new Smarty;
$smarty->setTemplateDir('templates');
$smarty->setCompileDir('templates_c');
$smarty->setCacheDir('cache');
$smarty->assign('title', 'Hello, World!');
$smarty->assign('content', 'This is a static webpage generated with Smarty.');
$smarty->display('index.tpl');
<!DOCTYPE html>
<html>
<head>
<title>{$title}</title>
</head>
<body>
<h1>{$title}</h1>
<p>{$content}</p>
</body>
</html>
通過上述步驟,就可以使用Smarty生成靜態網頁。Smarty提供了豐富的模板語法和功能,便于開發人員管理和維護模板文件,實現頁面與數據的分離,提高開發效率。