php Smarty模板生成html文档的方法
作者:bea
下面直接发代码 代码如下: <?php /* file:config_smarty.php done:配置Smarty author:www.5dkx.com date:2009-12-21 */ include_once("../libs/smarty.class.php"); class MySmarty extends Smarty{ function __construct() { $this->Smarty(); $this
下面直接发代码
代码如下:
<?php
/*
file:config_smarty.php
done:配置Smarty
author:www.5dkx.com
date:2009-12-21
*/
include_once("../libs/smarty.class.php");
class MySmarty extends Smarty{
function __construct()
{
$this->Smarty();
$this->config_dir = "../config";
$this->cache_dir = "../cache";
$this->template_dir = "../template";
$this->compile_dir = "../template_c";
$this->cache = false;
}
}
$smart = new MySmarty();
$smart->assign("title","标题");
$smart->assign("content","内容");
$smart->display('article.tpl');
$output = $smart->fetch('article.tpl');
$Path = "../html/1.html";
$fp = fopen($Path,"w");
fwrite($fp,$output);
fclose($fp);
?>
有用 | 无用
代码如下:
<?php
/*
file:config_smarty.php
done:配置Smarty
author:www.5dkx.com
date:2009-12-21
*/
include_once("../libs/smarty.class.php");
class MySmarty extends Smarty{
function __construct()
{
$this->Smarty();
$this->config_dir = "../config";
$this->cache_dir = "../cache";
$this->template_dir = "../template";
$this->compile_dir = "../template_c";
$this->cache = false;
}
}
$smart = new MySmarty();
$smart->assign("title","标题");
$smart->assign("content","内容");
$smart->display('article.tpl');
$output = $smart->fetch('article.tpl');
$Path = "../html/1.html";
$fp = fopen($Path,"w");
fwrite($fp,$output);
fclose($fp);
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 国外比较好的几个的Php开源建站平台小结
- PHP最常用的ini函数分析 针对PHP.ini配置文件
- php allow_url_include的应用和解释
- php strcmp使用说明
- PHP 加密解密内部算法
- PHP 根据IP地址控制访问的代码
- 让PHP开发者事半功倍的十大技巧小结
- php快速url重写 更新版[需php 5.30以上]
- 一个PHP的String类代码
- 使用PHP提取视频网站页面中的FLASH地址的代码
- 来自phpguru得Php Cache类源码
- PHP中防止SQL注入攻击和XSS攻击的两个简单方法
- php 格式化数字的时候注意数字的范围
- 在IIS7.0下面配置PHP 5.3.2运行环境的方法
- php 上传功能实例代码
- php array_search() 函数使用
- php in_array 函数使用说明与in_array需要注意的地方说明
- php读取javascript设置的cookies的代码
- php将数据库中所有内容生成静态html文档的代码