mirror of
https://github.com/fghrsh/live2d_api.git
synced 2024-11-22 10:40:02 +08:00
16 lines
673 B
PHP
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";
|
||
|
}
|
||
|
/*-----------------------------------------------------------------*/
|