這篇文章主要介紹了PHP實作批次重命名某個資料夾下所有檔案的方法,涉及php針對資料夾下檔案的遍歷、字串尋找、截取及rename函數重命名檔案等相關操作技巧,需要的朋友可以參考下
本文實例講述了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中文網其他相關文章!