php中批量修改文件后缀名的函数代码

前端之家收集整理的这篇文章主要介绍了php中批量修改文件后缀名的函数代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="16708" class="copybut" id="copybut16708" onclick="doCopy('code16708')"> 代码如下:

<div class="codebody" id="code16708">
<?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."
";
foreachDir($path.$file);
}else{
echo "--".$path."/".$file."
";
$ext = strripos($file,'.');
$aaa = substr($file,$ext);
rename($path.'/'.$file,$path.'/'.$aaa.'.JPG');
// die();
}
}
}
return false;
}
}
foreachDir('D:\xampp\htdocs\TNF2');

原文链接:https://www.f2er.com/php/27565.html

猜你在找的PHP相关文章