ホームページ >バックエンド開発 >PHPチュートリアル >無限のディレクトリとディレクトリ間でコードをコピーする_PHP チュートリアル
無制限のディレクトリのコピー、ウェブマスターによるオリジナルの作成。作成にかかる時間はわずか数分ですが、それでも非常に便利です
。
$o_path="admin";//ソースディレクトリ
$n_path="n_admin";//新しいディレクトリ
クラスコピーパス
{
関数 wm_chief_copypath($o_path,$n_path)
{$hand=opendir($o_path);
if(!file_exists($n_path))//ターゲットディレクトリが存在しない場合は作成します
{$this->wm_chief_createpath($n_path);}
$i=0;
while($file=readdir($hand))
{$i;
if($i==1||$i==2)
{続き;}
if(!(strchr($file,".")))
{
$o_s_path=$o_path."/".$file;
$n_s_path=$n_path."/".$file;
$this->wm_chief_copypath($o_s_path,$n_s_path);
}
それ以外
{
$o_file=$o_path."/".$file;
$n_file=$n_path."/".$file;
$this->wm_chief_copyfile($o_file,$n_file);
}
}
クローズドIR($hand);
true を返します;
}
関数 wm_chief_copyfile($o_file,$n_file)
{
コピー($o_file,$n_file);
}
関数 wm_chief_createpath($n_path)
{
mkdir($n_path,0777);
}
}
$wm_chief=新しいコピーパス();
$wm_chief_ok=$wm_chief->wm_chief_copypath($o_path,$n_path);
if($wm_chief_ok)
{
echo "コピーが完了しました";
}
?>