生成页面在根目录.
更多技术文章请移步
http://www.dahuzhi.com
class IndexAction extends GlobalAction {
public function html()
{
$this->assign('title', '测试静态页标题');
$this->assign('body', '测试静态页内容');
//捕获输出赋值到变量
$output = $this->fetch();
//生成文件
file_put_contents(APP_PATH . '/test.html', $output);
}
}
html模版页面<html>
<head>
<title>{$title}</title>
</head>
<body>
{$body}
</body>
</html>