Conversion of all file encodings under the PHP folder

Source: Internet
Author: User
/tbody>
php the encoding of all files under the conversion folder Other encoded versions for publishing sites for example, you have a GBK version you want to have a UTF8 version or you only GBK source code you want to develop two times but you don't want to change the way the IDE is encoded you can use this program to convert it to UTF8:


Code as follows:

  1. !--? phpfunction iconv_file ($filename,
  2. $input _encoding= ' GBK ',
  3. $output _encoding= ' Utf-8 ') {if (file_exists ($filename))
  4. {if (Is_dir ($filename)) {
  5. foreach (Glob ("$filename
  6. $contents _after = iconv ($input _encoding, $output _encoding, $contents _before);
  7. file_put_contents ($filename, $contents _after);}} else
  8. {echo ' parameter error '; return false;}} Iconv_file ('./test ');?
copy code I hope this article is helpful to the vast majority of PHP developers, thanks for reading this article. More PHP Technical issues Welcome Dabigatran discussion: 256271784 , Verification code: Cxy , do not write verification does not pass yo ~
  • 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.