-
-
/**
- 功能:產生靜態頁面
- 整理:腳本學堂 bbs.it-home.org
- 日期:2013-2-16
- */
- class html
- {
- var $dir ; //dir for the htmls(without/)
- var $rootdir; //root of html files(without/):html
- var $name; //html檔案存放路徑
- var $dirname; //指定的資料夾名稱
- var $url; //取得html檔案資訊的來源網頁位址
- var $time; //html檔案資訊填加時的時間
- var $dirtype; //目錄存放方式:year,month,,,,
- var $nametype; //html檔案命名方式:name
function html($nametype='name',$dirtype=' year',$rootdir='html')
- {
- $this->setvar($nametype,$dirtype,$rootdir);
- }
function setvar( $nametype='name',$dirtype='year',$rootdir='html')
- {
- $this->rootdir=$rootdir;
- $this->dirtype=$dirtype;
- $this->nametype=$nametype;
- }
function createdir($dir='')
- {
- $this->dir=$dir? $dir:$this->dir;
if (!is_dir($this->dir))
- {
- $temp = explode('/',$this- >dir);
- $cur_dir = '';
- for($i=0;$i{
- $cur_dir .= $temp[$ i].'/';
- if (!is_dir($cur_dir))
- {
- @mkdir($cur_dir,0777);
- }
- }
- }
- }
- }
function getdir($dirname='',$time=0)
- {
- $this->time=$time?$time:$this->time;
- $this->dirname=$dirname?$dirname:$this->dirname;
switch($this->dirtype)
- {
- case 'name' :
- if(empty($this->dirname))
- $this->dir=$this->rootdir;
- else
- $this->dir=$this->rootdir.' /'.$this->dirname;
- break;
- case 'year':
- $this->dir=$this->rootdir.'/'.date("Y",$this- >time);
- break;
case 'month':
- $this->dir=$this->rootdir.'/'.date("Y-m",$ this->time);
- break;
case 'day':
- $this->dir=$this->rootdir.'/'.date("Y-m-d" ,$this->time);
- break;
- }
$this->createdir();
return $this-> dir;
- }
function geturlname($url='')
- {
- $this->url=$url?$url:$this->url;
$filename=basename($this->url);
- $filename=explode(".",$filename);
- return $filename[0];
- }
function geturlquery($url='')
- {
- $this->url=$url?$url:$this->url;
$durl=parse_url($this->url);
- $durl=explode("&",$durl[query]);
- foreach($durl as $surl)
- {
- $gurl=explode("=",$surl);
- $eurl[]=$gurl[1];
- }
- return join("_",$eurl);
- }
function getname($url='',$time=0,$dirname='')
- {
- $this->url=$url? $url:$this->url;
- $this->dirname=$dirname?$dirname:$this->dirname;
- $this->time=$time?$time:$this->time ;
$this->getdir();
switch($this->nametype)
- {
- case 'name':
- $filename=$this->geturlname().'.htm';
- $this->name=$this->dir.'/'.$filename;
- break;
case 'time':
- $this->name=$this->dir.'/'.$this->time.'.htm';
- break;
case 'query':
- $this->name=$this->dir.'/'.$this->geturlquery().'.htm';
- break;
case 'namequery':
- $this->name=$this->dir.'/'.$this->geturlname().'-'.$this->geturlquery() .'.htm';
- break;
case 'nametime':
- $this->name=$this->dir.'/'.$this->geturlname ().'-'.$this->time.'.htm';
- break;
}
- return $this->name;}
function createhtml($url='',$time=0,$dirname='',$htmlname='')
- {
- $this-> url=$ url?$url:$this->url;
- $this->dirname=$dirname?$dirname:$this->dirname;
- $this->time=$time ?$time:$this- >time;
- //上面保證不重複地把戒指賦予該類成員
- if(empty($htmlname))
- $this->getname();
- else
- $this ->name=$dirname.'/'.$htmlname; //取得name
- $content=file($this->url) or die("無法開啟url ".$this->url." !" );;
///////////////關鍵步---用檔案讀取$this->url
- $content=join( "",$content);
- $fp=@fopen($this->name,"w") 或 die("無法開啟檔案「.$this->name。」!");
- if (@fwrite ($fp,$content))
- 回傳true;
- 否則
- 回傳false;
- fclose($fp);
- }
- /////// /// /////// 以name為名字產生html
- function deletehtml($url='',$time=0,$dirname='')
- {
- $this-> url= $url?$url:$this->url;
- $this->time=$time?$time:$this->time;
$this ->getname ();
if(@unlink($this->name))
- 回傳true;
- else
- 回傳false;
- }
/**
- * function::deletedir()
- * 刪除目錄
- * @param $file 目錄名(不含/)
- * @return
- */
- 函數deletedir($file)
- {
- if(file_exists($file))
- {
- if(is_dir($file ))
- {
- $handle =opendir($file);
- while(false!==($filename=readdir($handle)))
- {
- if($filename! ="."&&$filename!="..")
- $this->deletedir($file."/".$filename);
- }
- closedir($handle);
- rmdir($file);
- 回傳true;
- }else{
- 取消連結($file);
- }
- }
- }
- }
- ?>
複製程式碼
您可能有興趣的文章:
php產生靜態頁面的清晰方法與程式碼詳解
php 產生靜態頁面函數(php2html) 的範例
php產生靜態頁面的方法(三個函數)
細說php產生靜態檔之模板與快取
虛擬主機上定時自動產生靜態頁面的方法
php產生靜態檔案的兩種方法
php 產生靜態頁面的詳細教學
php產生靜態html檔案的原理分析
smarty 產生靜態頁面的方法
了解php產生靜態HTML檔的原理
PHP 產生靜態頁的方法
php產生靜態html檔案的透明方法
|