欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-04-28 15:45:15
复制代码 代码如下:
复制代码 代码如下:

<?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');