Home >Backend Development >PHP Tutorial >php 改变文件目录上文件的后缀名

php 改变文件目录上文件的后缀名

WBOY
WBOYOriginal
2016-06-13 11:03:27863browse

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);    }}
?

?

?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn