php取代檔案後綴的方法:先建立PHP範例檔案;然後透過「function changeTypeName($path, $oldTypaName, $newTypeName){...}」方法取代檔案後綴即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
php怎麼取代檔案後綴?
php 改變檔案目錄下檔案的後綴名稱
changeTypeName("E:/bak/video/code/views", "html", "phtml"); //改变文件目录下文件的后缀名 function changeTypeName($path, $oldTypaName, $newTypeName) { $path = "glob://$path/*"; $files = new DirectoryIterator($path); foreach ($files as $file) { $fileRealPath = $file->getRealPath(); //文件绝对路径 $compressCssFileRealPath = str_replace(".$oldTypaName", ".$newTypeName", $fileRealPath); rename($fileRealPath, $compressCssFileRealPath); } }
相關介紹:
rename() 函數重新命名檔案或目錄。
若成功,則函數傳回 true。若失敗,則傳回 false。
語法
rename(oldname,newname,context)
參數
oldname 必要。規定要重新命名的檔案或目錄。
newname 必要。規定文件或目錄的新名稱。
context 可選。規定文件句柄的環境。 context 是可修改流的行為的一套選項。
推薦學習:《PHP影片教學》
以上是php怎麼替換文件後綴的詳細內容。更多資訊請關注PHP中文網其他相關文章!