利用smarty生成静态页实例

浏览:1803 发布日期:2013/12/20 分类:功能实现 关键字: 纯静态 静态页 smarty生成静态页
利用smarty生成静态页实例.

生成页面在根目录.

更多技术文章请移步
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>
评论( 相关
后面还有条评论,点击查看>>