웹사이트의 다른 인코딩 버전을 게시하는 데 적합한 PHP 변환 폴더의 모든 파일 인코딩 함수 클래스를 공유하세요. 예를 들어 GBK 버전이 있고 UTF8 버전을 원하거나 GBK 소스 코드만 있고 다시 개발하고 싶지만 IDE를 변경하고 싶지 않은 경우 이 프로그램을 사용하여 UTF8로 일괄 변환할 수 있습니다.
기능 코드:
<?php /** * 把一个文件夹里的文件全部转码 只能转一次 否则全部变乱码 * @param string $filename */ function iconv_file($filename,$input_encoding='gbk',$output_encoding='utf-8') { if(file_exists($filename)) { if(is_dir($filename)) { foreach (glob("$filename/*") as $key=>$value) { iconv_file($value); } } else { $contents_before = file_get_contents($filename); /*$encoding = mb_detect_encoding($contents_before,array('CP936','ASCII','GBK','GB2312','UTF-8')); echo $encoding; if($encoding=='UTF-8') mb_detect_encoding函数不工作 { return; }*/ $contents_after = iconv($input_encoding,$output_encoding,$contents_before); file_put_contents($filename, $contents_after); } } else { echo '参数错误'; return false; } } iconv_file('./test'); ?>
참고: 폴더의 모든 파일은 한 번만 트랜스코딩할 수 있습니다. , 그렇지 않으면 모두 깨질 것입니다
위 내용은 PHP에서 폴더의 모든 파일 인코딩을 일괄 변환하기 위해 함수 클래스 공유를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!