PHP에서 파일 확장자를 수정하는 방법: 먼저 PHP 파일을 만든 다음 "changeTypeName" 메서드를 정의한 다음 파일의 절대 경로를 가져온 다음 마지막으로 "rename($fileRealPath, $compressCssFileRealPath)"를 통해 수정합니다. .
권장: "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); } }
위 내용은 PHP에서 파일 확장자를 수정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!