Ec (2); today, we use the php tutorial rename and str_repleace to Perform Batch Object Name replacement. I hope you can check it out. $ DirD: ProgramFilesresourceapplicationSkinPNG: programFile script ec (2); script
Today, we use the php tutorial rename and str_repleace to batch replace file names. I hope you can check it out.
$ Dir = 'd: Program FilesresourceapplicationSkinPNG '; // pay attention to the path here. Add two to the end. The first one indicates the conversion, but it is easy to encounter other specific escape characters and must be judged carefully, you can write as follows:
$ Dir = 'd:/Program Files/resource/application/Skin/PNG/'; // write this path, so you don't have to worry about escape. Last/do not miss writing
If ($ dh = opendir ($ dir ))
{
While ($ file = readdir ($ dh ))! = False)
{
If ($ file! = "." & $ File! = "..")
{
If (filetype ($ dir. $ file) = 'file ')
{
$ Newfile = str_replace (array ('_ PNG', '_ xml',' _ ICO '), array ('. PNG ','. XML ','. ICO '), $ file );
Var_dump ($ file. '======>'. $ newfile .'
');
Rename ($ dir. $ file, $ dir. $ newfile );
}
}
}
Closedir ($ dh );
}