Php batch naming file method-PHP source code

Source: Internet
Author: User
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 );
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.