コードをコピー コードは次のとおりです:
class html
{
var $dir; // html ファイルのディレクトリ (/ なし)
var $rootdir; // HTML ファイルのルート (/ なし) :html
var $name; //html ファイルの保存パス
var $dirname; // HTML ファイル情報を取得する元の Web ページのアドレス
var $ time; //html ファイル情報を記入する時刻
var $dirtype; // ディレクトリの保存方法: 年, 月,,,,
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= $ルートディレクトリ;
$this->dirtype=$dirtype;
$this->dir=$dir?$this-> ;dir; > $temp =explode('/',$this->dir);
$cur_dir = ''; $i=0;$i
@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;
休憩;
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-> ディレクトリ;
}
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;
休憩;
case 'time':
$this->name=$this->dir.'/'.$this->time.'.htm';
休憩;
case 'query':
$this->name=$this->dir.'/'.$this->geturlquery().'.htm';
休憩;
case 'namequery':
$this->name=$this->dir.'/'.$this->geturlname().'-'.$this-> geturlquery().'.htm';
休憩;
case 'nametime':
$this->name=$this->dir.'/'.$this->geturlname().'-'.$this->時間.'.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()
* ディレクトリの削除
* @param $file ディレクトリ名 (/ なし)
* @return
*/
function deletedir($file)
{
if(file_exists($file))
{
場合(is_dir($file))
{
$handle =opendir($file);
while(false!==($filename=readdir($handle)))
{
if($filename!="."&&$filename!="..")
$ this->deletedir($file."/".$filename);
}
closedir($handle);
rmdir($file);
true を返します。
}else{
unlink($file);
}
}
}
}
?>