PHP 将文件重命名为小写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将文件重命名为小写相关的知识,希望对你有一定的参考价值。

$files = scandir($directory);
foreach($files as $key=>$name){
	$oldName = $name;
	$newName = strtolower($name);
	rename("$directory/$oldName","$directory/$newName");
}

以上是关于PHP 将文件重命名为小写的主要内容,如果未能解决你的问题,请参考以下文章

将文件重命名为小写

在git中将文件批量重命名为小写

powershell 重命名为小写文件

在 Powershell 中将文件重命名为小写

sh 在Mac OSX中将所有文件重命名为小写

如何在 Linux 上将所有文件夹和文件重命名为小写?