関数 foreachDir($path){
$handle=opendir($path);
if($ハンドル){
while (false !== ($file = readdir($handle))) {
if($file!="." && $file!='..'){
if(is_dir($path.$file)){
echo $path.$file."
";
foreachDir($path.$file);
}その他{
echo "--".$path."/".$file."
";
$ext = strripos($file,'.');
$aaa = substr($file,0,$ext);
rename($path.'/'.$file,$path.'/'.$aaa.'.JPG');
// 死ぬ();
}
}
}
false を返します;
}
}
foreachDir('D:xampphtdocsTNF2');