设为首页收藏本站language 语言切换
查看: 1771|回复: 0
收起左侧

生成静态页面的类

[复制链接]
发表于 2010-2-24 13:43:25 | 显示全部楼层 |阅读模式
<>&lt;?php<BR><BR>// --------------------------------------------------------------------------<BR>// File name   : html.class.php<BR>// Description : 生成静态页面的类<BR>// Requirement : PHP5 <BR>//<BR>// Copyright(C), 蟋蟀, 2005, All Rights Reserved.<BR>//<BR>// Author: 蟋蟀 (<A href="mailto:jlspzxs@yahoo.com.cn"><FONT color=#003366><U>jlspzxs@yahoo.com.cn</U></FONT></A>) <BR>//<BR>// Date 2006-05-01<BR>// -------------------------------------------------------------------------<BR>class myHtml{<BR><BR>//生成html文件路径<BR>private $html_dir="./";<BR>//html文件名称<BR>private $html_name;<BR>//生成html文件的位置名称<BR>public  $path; <BR>//缓存区内容<BR>private $content;<BR>//文件句柄<BR>private $handle;<BR>//内存指针<BR>private $accesses;<BR>         //构造函数<BR>public function __construct($html_dir="",$html_name="")<BR>{<BR>   $this-&gt;accesses++;<BR>  //如果文件路径不存在建立文件夹<BR>  if(opendir($html_dir)==0)<BR>         {<BR>           mkdir($html_dir);<BR>         }<BR><BR>  $this-&gt;html_dir=$html_dir!=""?$html_dir:"./";<BR>  $this-&gt;html_name=$html_name!=""?$html_name:substr(basename(__FILE__),0,strrpos(basename(__FILE__),".")).".html";<BR>  $this-&gt;path= ($this-&gt;html_dir{strlen($this-&gt;html_dir)-1}=="/")<BR>     ?($this-&gt;html_dir.$this-&gt;html_name)$this-&gt;html_dir."/".$this-&gt;html_name);<BR>  ob_start();<BR>  <BR>}<BR>//析构函数<BR>public function __destruct()<BR>        {<BR>         $this-&gt;accesses--;<BR>          ob_end_clean();<BR>        }<BR>//生成html页面<BR>function tohtml()<BR>{<BR>$this-&gt;content=ob_get_contents();<BR>if (is_file ($this-&gt;path)){<BR>  @unlink ($this-&gt;path);<BR>}<BR>$handle = fopen ($this-&gt;path,"w");<BR>if (!is_writable ($this-&gt;path)){<BR>  return false;<BR>}<BR>if (!fwrite ($handle,$this-&gt;content)){<BR>  return false;<BR>} <BR>fclose ($handle); //关闭指针<BR>return $this-&gt;path;<BR>}<BR>}<BR>/*<BR>$html=new myHtml("./","z.htm");<BR>print "静态页面程序";<BR>$html-&gt;tohtml();<BR>*/<BR>?&gt;<BR></P>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-5 20:52 , Processed in 0.077496 second(s), 22 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表