Home  >  Article  >  Backend Development  >  How to modify the suffix of a specified file in php

How to modify the suffix of a specified file in php

怪我咯
怪我咯Original
2017-07-05 10:01:531156browse

This article mainly introduces the method of modifying the suffix of the specified file in PHP. The function foreachDir in the article can realize the functions of detecting, reading, opening and replacing the file suffix of the file directory, which is very practical. For tips, friends who need them can refer to

Due to project requirements, I need to change the asp suffix to php, because I am too lazy to change them one by one. I also feel that php, like Qt, is a high-level language. Generally, high-level languages ​​provide functions for adding, deleting, modifying and checking the obtained content. After some information search and code testing, I summarized the method of modifying the specified file suffix in PHP and shared it with everyone.

Goal: Change the asp suffix in the current directory to php without affecting other "files in suffix format", and only for the "current folder", files in the folders contained in the current folder No modifications are made.

The specific function code is as follows:

<?php 
function foreachDir($dirname)
{ 
if(!is_dir($dirname))
{
  echo "{$dirname} not effective dir";
  exit();
}
 $handle=opendir($dirname); //打开目录

while (($file = readdir($handle))!==false) //读取目录
{ 
 if($file!="." && $file!=&#39;..&#39;)
 { 
  if(is_dir($dirname.$file))
 { 
  echo $dirname.$file."<br/>"; 
  //foreachDir($dirname.$file); //如果注释号去掉,将会递归修改文件夹内的文件夹文件
 }
  else
 { 
  echo "--".$dirname."/".$file."<br/>"; 
  $temp = substr($file, strrpos($file, &#39;.&#39;)+1); //获取后缀格式
   if ($temp == "asp") 
   {
  $pos = strripos($file,&#39;.&#39;); //获取到文件名的位置
  $filename = substr($file,0,$pos); //获取文件名
  rename($dirname.&#39;/&#39;.$file,$dirname.&#39;/&#39;.$filename.&#39;.php&#39;); //替换为php后缀格式。
   }
 } 
 } 
 } 
} 
foreachDir(&#39;../traverseMendFilename&#39;);
?>

Interested friends can test run and expand and improve the examples in this article. I believe it will be helpful to everyone's learning of PHP programming.

The above is the detailed content of How to modify the suffix of a specified file in php. For more information, please follow other related articles on the PHP Chinese website!

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