phpでディレクトリの書き込み権限をチェックする

サンプルコード:
set_time_limit(1000);
function dirchk_iswriteableFunc($dir_path){
$dir_path=str_replace('\’,’/’,$dir_path);
$is_writeable=1;
if(!is_dir($dir_path)){
$is_writeable=0;
return $is_writeable;
}else{
$file_hd=@fopen($dir_path.’/ctmwrite.txt’,’w’);
if(!$file_hd){
@fclose($file_hd);
@unlink($dir_path.’/ctmwrite.txt’);
$is_writeable=0;
return $is_writeable;
}
$dir_hd=opendir($dir_path);
while(false!==($file=readdir($dir_hd))){
if ($file != “." && $file != “..") {
if(is_file($dir_path.’/’.$file)){
if(!is_writable($dir_path.’/’.$file)){
return 0;
}
}else{
$file_hd2=@fopen($dir_path.’/’.$file.’/ctmwrite.txt’,’w’);
if(!$file_hd2){
@fclose($file_hd2);
@unlink($dir_path.’/’.$file.’/ctmwrite.txt’);
$is_writeable=0;
return $is_writeable;
}

$is_writeable=dirchk_iswriteableFunc($dir_path.’/’.$file);
}
}
}
}
return $is_writeable;
}

PHP

Posted by arkgame