ホームページ  >  記事  >  php教程  >  PHP は無制限のディレクトリとファイルのコード共有を削除します

PHP は無制限のディレクトリとファイルのコード共有を削除します

WBOY
WBOYオリジナル
2016-06-13 12:25:28898ブラウズ

// ディレクトリを削除します
class del_path
{
function wm_chief_delpath($del_path)
{
if(!file_exists($del_path))// ターゲット ディレクトリは存在しません 次に、
{echo "ディレクトリが存在しません"; return false;}
$hand=opendir($del_path);
while($file=readdir() $hand) )
{$i ;
if($i==1||$i==2)
{Continue;}
if(!(strchr($file,". ")) )
{
$del_s_path=$del_path."/".$file;
$this->gt;wm_chief_delpath($del_s_path);
}
else
{
$del_file=$del_path."/".$file;
$this->wm_chief_file($del_file);
}
}
closedir($hand); $this- >wm_chief_path($del_path);
return true;
}
//ファイルを削除
function wm_chief_file($del_file)
{
unlink($del_file);
}
//ディレクトリを削除します
function wm_chief_path($del_path)
{
rmdir($del_path);
}
}
$DelPath="DelPath" ;// 削除するディレクトリ
$wm_chief=new del_path();
$wm_chief_ok=$wm_chief->wm_chief_delpath($DelPath);
if($wm_chief_ok)
{
echo"削除完了";
}
?>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。