live2d_api/tools/name-to-lower.php
2018-03-03 01:39:22 +08:00

16 lines
673 B
PHP

<?php
/* 批量转换 文件名为 小写英文 + 使用 连字符-替换-空格 */
$path = '../model/test-path';//<--- 在此输入目录路径,并执行本面页
/*-----------------------------------------------------------------*/
$path = str_replace('\\', '/', $path);
if (substr($path, -1) != '/') $path = $path . '/';
/*-----------------------------------------------------------------*/
foreach ( glob($path.'*') as $file ) {
$new_filename = str_replace(' ', '-', strtolower($file));
rename($file, $new_name); echo $file.' -> '.$new_name." ok. \n";
}
/*-----------------------------------------------------------------*/