<?php $str = '東舘町'; var_dump(mb_detect_encoding($str, ['UTF-8','SJIS-WIN'], true)); var_dump(mb_detect_encoding($str, ['UTF-8','SJIS-WIN'], false)); var_dump(mb_detect_encoding_php80($str, ['UTF-8','SJIS-WIN'])); function mb_detect_encoding_php80($string, $encodings) { foreach($encodings as $encoding) { $result = mb_detect_encoding($string, $encoding, true); if ($result !== false) { return $result; } } }
You have javascript disabled. You will not be able to edit any code.