ホームページ  >  記事  >  バックエンド開発  >  静的ページを生成する PHP クラス_PHP チュートリアル

静的ページを生成する PHP クラス_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-21 16:12:20844ブラウズ

コードをコピーします コードは次のとおりです:
class html
{
var $dir; //html ファイルのディレクトリ (/ なし)
var $rootdir; // HTML ファイルのルート (/ なし):html
var $name;ファイル保存パス
var $dirname; // 指定したフォルダー名
var $url; // HTML ファイル情報のソース Web ページのアドレスを取得
var $time; // HTML ファイル情報を入力した時刻
var $dirtype; //ディレクトリの保存方法: year,month,,,,
var $nametype; //html ファイルの命名方法: name

function html($nametype='name',$dirtype='year',$rootdir='html ')
{$ dir =' '){
$ this'、$> dir); 

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->ルートディレクトリ; 
else
$this->dir=$this->rootdir.'/'.$this->dirname; 
休憩; 
case 'year':
$this->dir=$this->rootdir.'/'.date("Y",$this->time); 
休憩; 

case 'month':
$this->dir=$this->rootdir.'/'.date("Y-m",$this->time); 
休憩; 

case 'day':
$this->dir=$this->rootdir.'/'.date("Y-m-d",$this->time); 
休憩; 
}

$this->createdir(); 

return $this->dir; 
}

function geturlname($url='')
{
$this->url=$url?$url:$this->url; 

$filename=ベース名($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); 


関数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; 
休憩; 

case 'time':
$this->name=$this->dir.'/'.$this->time.'.htm'; 
休憩; 

case 'クエリ':
$this->name=$this->dir.'/'.$this->geturlquery().'.htm'; 
休憩; 

case 'namequery':
$this->name=$this->dir.'/'.$this->geturlname().'-'.$this->geturlquery().'。 html'; 
休憩; 

case 'nametime':
$this->name=$this->dir.'/'.$this->geturlname().'-'.$this->time.'.htm' ; 
休憩; 

}
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") or die("ファイルを開けませんでした".$this->name." !"); 
if(@fwrite($fp,$content))
true; を返します。 
else
return 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
return false; 
}

/**
* function :: deletedir()*/
function deletedir($file)
{
if(file_exists($file))
{
if(is_dir($file))
{
$handle =opendir($ファイル); 
while(false!==($filename=readdir($handle)))
{
if($filename!="."&&$filename!="..")
$this->deletedir($file ."/".$ファイル名); 
}
closedir($handle); 
rmdir($file); 
true を返します。 
}else{
unlink($file); 
}
}
}

}
?>



http://www.bkjia.com/PHPjc/313728.html

www.bkjia.com

http://www.bkjia.com/PHPjc/313728.html技術記事复制代码代码如下: ?php classhtml { var$dir;//dirforthehtmls(without/) var$rootdir;//rootofhtmlfiles(without/):html var$name;//html文書保存路径 var$dirname;//指定文...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。