php Smarty模板生成html文档的方法


Posted in PHP onApril 12, 2010

下面直接发代码

<?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 相关文章推荐
apache2.2.4+mysql5.0.77+php5.2.8安装精简
Apr 29 PHP
php中CI操作多个数据库的代码
Jul 05 PHP
php中将字符串转为HTML的实体引用的一个类
Feb 03 PHP
php header功能的使用
Oct 28 PHP
php通过array_merge()函数合并关联和非关联数组的方法
Mar 18 PHP
PHP中把对象转换为关联数组代码分享
Apr 09 PHP
php 数组处理函数extract详解及实例代码
Nov 23 PHP
php 开发中加密的几种方法总结
Mar 22 PHP
php实现页面纯静态的实例代码
Jun 21 PHP
[原创]PHP global全局变量经典应用与注意事项分析【附$GLOBALS用法对比】
Jul 12 PHP
PHP 计算至少是其他数字两倍的最大数的实现代码
May 26 PHP
PHP7 参数处理机制修改
Mar 09 PHP
php empty函数判断mysql表单是否为空
Apr 12 #PHP
PHP iconv 解决utf-8和gb2312编码转换问题
Apr 12 #PHP
让的PHP代码飞起来的40条小技巧(提升php效率)
Apr 12 #PHP
ajax+php打造进度条代码[readyState各状态说明]
Apr 12 #PHP
创建数据库php代码 用PHP写出自己的BLOG系统
Apr 12 #PHP
创建配置文件 用PHP写出自己的BLOG系统 2
Apr 12 #PHP
php 中文字符入库或显示乱码问题的解决方法
Apr 12 #PHP
You might like
php-fpm配置详解
2014/02/12 PHP
PHP中4个加速、缓存扩展的区别和选用建议
2014/03/12 PHP
PHP根据session与cookie用户登录状态操作类的代码
2016/05/13 PHP
农历与西历对照
2006/09/06 Javascript
Javascript的一种模块模式
2008/03/22 Javascript
javascript 特殊字符串
2009/02/25 Javascript
jQuery仿Flash上下翻动的中英文导航菜单实例
2015/03/10 Javascript
JavaSciprt中处理字符串之sup()方法的使用教程
2015/06/08 Javascript
Bootstrap BootstrapDialog使用详解
2017/02/17 Javascript
xmlplus组件设计系列之分隔框(DividedBox)(8)
2017/05/02 Javascript
jQuery实现动态删除LI的方法
2017/05/30 jQuery
vue2.0使用swiper组件实现轮播效果
2017/11/27 Javascript
nodejs中Express与Koa2对比分析
2018/02/06 NodeJs
Vue 实现双向绑定的四种方法
2018/03/16 Javascript
JavaScript实现封闭区域布尔运算的示例代码
2018/06/25 Javascript
VSCode搭建React Native环境
2020/05/07 Javascript
解决vue prop传值default属性如何使用,为何不生效的问题
2020/09/21 Javascript
[02:24]DOTA2痛苦女王 英雄基础教程
2013/11/26 DOTA
python 环境变量和import模块导入方法(详解)
2017/07/11 Python
python3+PyQt5实现拖放功能
2018/04/24 Python
PyCharm代码整体缩进,反向缩进的方法
2018/06/25 Python
python 定时任务去检测服务器端口是否通的实例
2019/01/26 Python
TensorFlow卷积神经网络之使用训练好的模型识别猫狗图片
2019/03/14 Python
Python中的引用和拷贝实例解析
2019/11/14 Python
python ctypes库2_指定参数类型和返回类型详解
2019/11/19 Python
jupyter notebook 参数传递给shell命令行实例
2020/04/10 Python
Python flask框架实现浏览器点击自定义跳转页面
2020/06/04 Python
python 实现aes256加密
2020/11/27 Python
CSS3实现复选框动画特效示例代码
2016/09/27 HTML / CSS
使用phonegap获取设备的一些信息方法
2017/03/31 HTML / CSS
员工试用期考核自我鉴定
2014/04/13 职场文书
网络研修随笔感言
2015/11/18 职场文书
python flask开发的简单基金查询工具
2021/06/02 Python
python基础入门之普通操作与函数(三)
2021/06/13 Python
SQL优化老出错,那是你没弄明白MySQL解释计划用法
2021/11/27 MySQL
MySQL数据库实验实现简单数据库应用系统设计
2022/06/21 MySQL