Home  >  Article  >  Backend Development  >  Conversion of encoding of all files in PHP folder

Conversion of encoding of all files in PHP folder

WBOY
WBOYOriginal
2016-07-25 09:13:351010browse
The encoding of all files in the PHP conversion folder is suitable for publishing other encoding versions of the website. For example, if you have a GBK version and you want to have a UTF8 version, or you only have the source code of GBK and you want secondary development but you don’t want to change the encoding method of the IDE, you can Use this program to batch convert it to UTF8:


The code is as follows:

  1. $input_encoding='gbk',
  2. $output_encoding='utf-8'){ if(file_exists($filename))
  3. { if(is_dir( $filename)) {
  4. foreach (glob("$filename
  5. $contents_after = iconv($input_encoding,$output_encoding,$contents_before);
  6. file_put_contents($filename, $contents_after); } } else
  7. { echo ' Parameter error'; return false; }}iconv_file('./test');?>
Copy code
I hope this article will be helpful to the majority of php developers, thank you for reading this article. Morephp technical issues. Welcome to join the group for discussion: 256271784, verification code: cxy, if you don’t write the verification, it will not be passed~


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