要使用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提供了丰富的模板语法和功能,便于开发人员管理和维护模板文件,实现页面与数据的分离,提高开发效率。