復(fù)制代碼 代碼如下:
<?php 
function foreachDir($path){ 
$handle=opendir($path); 
if($handle){ 
while (false !== ($file = readdir($handle))) { 
if($file!="." && $file!='..'){ 
if(is_dir($path.$file)){ 
echo $path.$file."<br/>"; 
foreachDir($path.$file); 
}else{ 
echo "--".$path."/".$file."<br/>"; 
$ext = strripos($file,'.'); 
$aaa = substr($file,0,$ext); 
rename($path.'/'.$file,$path.'/'.$aaa.'.JPG'); 
// die(); 
} 
} 
} 
return false; 
} 
} 
foreachDir('D:/xampp/htdocs/TNF2');
新聞熱點(diǎn)
疑難解答