PHP实现批量重命名某个文件夹下所有文件的方法
2018-09-07 14:15
本文实例讲述了PHP实现批量重命名某个文件夹下所有文件的方法。分享给大家供大家参考,具体如下:
自己手动这样一个个的重命名,累啊。所以还是偷懒一下。
我重命名的规则是把所有有空格的全部替换成“_”,然后再后面加一个_s。
<?php $paths = C://Documents and Settings//sk//Desktop//s//; $d = dir($paths); while (false !== ($entry = $d->read())) { $table_change = array( =>_); $newName = strtr($entry,$table_change); $newName = substr($newName, 0,-4); rename($paths.$entry, $paths.$newName._s.jpg); } $d->close(); echo done; ?>
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php文件操作总结》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》、《PHP网络编程技巧总结》及《php字符串(string)用法总结》
希望本文所述对大家PHP程序设计有所帮助。
文章标题:PHP实现批量重命名某个文件夹下所有文件的方法
文章链接:http://soscw.com/index.php/essay/13358.html