可以使用PHP的readdir()
函数和rename()
函数来批量修改文件名。
首先,使用readdir()
函数读取目标文件夹中的所有文件名,将文件名存储在一个数组中。然后,使用循环遍历数组中的每个文件名,并使用rename()
函数来修改文件名。
以下是一个示例代码:
$dir = 'path/to/directory/'; // 目标文件夹路径
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
if ($file != '.' && $file != '..') {
// 修改文件名逻辑
$newName = 'new_file_name'; // 新的文件名
$newFilePath = $dir . $newName;
$oldFilePath = $dir . $file;
rename($oldFilePath, $newFilePath);
echo "文件名已修改:{$file} -> {$newName}
";
}
}
closedir($dh);
}
}
请注意,在上述示例代码中,将new_file_name
替换为新的文件名,以及将path/to/directory/
替换为目标文件夹的实际路径。
此代码将目标文件夹中的每个文件名修改为new_file_name
。在循环中,可以根据需求定义不同的新文件名生成逻辑。