PHP로 어떻게 콘텐츠의 Encoding을 체크할 수 있을까?
CSV나 Excel의 내용을 체크하기 위해서, 「mb_detect_encoding」을 자주(잘) 사용하므로, 메모 실시합니다.
다른 방법이 있으면, 코멘트 해 주시면, 행복합니다.
아래는 "Shift JIS"를 검증의 예입니다.
$file_content = file_get_contents($file);
$encodings = array('SJIS-win', 'UTF-8', 'UTF-16');
if (mb_detect_encoding($file_content, $encodings) !== 'SJIS-win')
{
throw new Exception(__("File encoding must be Shift JIS."));
}
// $convertCt = mb_convert_encoding($file_content, 'UTF-8', 'SJIS-win');
잘 부탁드립니다.
Reference
이 문제에 관하여(PHP로 어떻게 콘텐츠의 Encoding을 체크할 수 있을까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/chithanh1012/items/39d362aec5250e3241e4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)