这篇文章主要介绍了PHP实现某个文件夹下所有文件重命名的方法,涉及php针对文件夹下文件的遍历、字符串查找、截取及rename函数重命名文件等相关操作技巧,需要的朋友可以参考下具体如下:
<?php $paths = "C://Documents and Settings//sk//Desktop//s//"; $d = dir($paths); while (false !== ($entry = $d->read())) { $table_change = array(' '=>'_'); $newName = strtr($entry,$table_change); $newName = substr($newName, 0,-4); rename($paths.$entry, $paths.$newName."_s.jpg"); } $d->close(); echo "done"; ?>
以上是PHP实现某个文件夹下所有文件重命名的方法的详细内容。更多信息请关注PHP中文网其他相关文章!