Implementation code for batch replacement of file names in php _ PHP Tutorial

Source: Internet
Author: User
Implementation code for batch replacement of file names in php. Copy the code as follows: $ dirD: ProgramFilesresourceapplicationSkinPNG \; note that two paths must be added. The first one indicates the conversion, but the code is as follows:

The code is as follows:


$ Dir = 'd: \ Program Files \ resource \ application \ Skin \ PNG \ '; // note the path here. add two \ s to the end. The first one indicates the conversion, however, in this case, it is easy to encounter other specific escape characters. you must make a careful judgment 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 );
}

The export code is as follows: $ dir = 'd: \ Program Files \ resource \ application \ Skin \ PNG \ '; // note the path here, and add two \, the first one indicates a conversion, but the content...

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.