|
< ><?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->accesses++;<BR> //如果文件路径不存在建立文件夹<BR> if(opendir($html_dir)==0)<BR> {<BR> mkdir($html_dir);<BR> }<BR><BR> $this->html_dir=$html_dir!=""?$html_dir:"./";<BR> $this->html_name=$html_name!=""?$html_name:substr(basename(__FILE__),0,strrpos(basename(__FILE__),".")).".html";<BR> $this->path= ($this->html_dir{strlen($this->html_dir)-1}=="/")<BR> ?($this->html_dir.$this->html_name) $this->html_dir."/".$this->html_name);<BR> ob_start();<BR> <BR>}<BR>//析构函数<BR>public function __destruct()<BR> {<BR> $this->accesses--;<BR> ob_end_clean();<BR> }<BR>//生成html页面<BR>function tohtml()<BR>{<BR>$this->content=ob_get_contents();<BR>if (is_file ($this->path)){<BR> @unlink ($this->path);<BR>}<BR>$handle = fopen ($this->path,"w");<BR>if (!is_writable ($this->path)){<BR> return false;<BR>}<BR>if (!fwrite ($handle,$this->content)){<BR> return false;<BR>} <BR>fclose ($handle); //关闭指针<BR>return $this->path;<BR>}<BR>}<BR>/*<BR>$html=new myHtml("./","z.htm");<BR>print "静态页面程序";<BR>$html->tohtml();<BR>*/<BR>?><BR></P> |
|