php文件夹下文件批量重命名
Posted jjxhp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php文件夹下文件批量重命名相关的知识,希望对你有一定的参考价值。
php文件夹下文件批量重命名
<?php
header("Content-type:text/html;charset=utf-8");
$dir = __DIR__.'./color/';
$file_arr = scandir($dir);
unset($file_arr[0]);
unset($file_arr[1]);
$file_arr = array_values($file_arr);
$n = count($file_arr);
for ($i = 0; $i < $n; ++$i)
$title = sprintf('color_%02s', $i + 1);
$old_file_name = $dir.$file_arr[$i];
$new_file_name = $title.strrchr($file_arr[$i],'.');
rename($old_file_name, $new_file_name);
以上是关于php文件夹下文件批量重命名的主要内容,如果未能解决你的问题,请参考以下文章