Home  >  Article  >  Backend Development  >  Function code for batch modifying file suffix names in PHP

Function code for batch modifying file suffix names in PHP

高洛峰
高洛峰Original
2016-11-30 13:21:221343browse

The code is as follows:

"; 
foreachDir($path.$file); 
}else{ 
echo "--".$path."/".$file."
"; $ext = strripos($file,'.'); $aaa = substr($file,0,$ext); rename($path.'/'.$file,$path.'/'.$aaa.'.JPG'); // die(); } } } return false; } } foreachDir('D:\xampp\htdocs\TNF2');


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