PHP 如何判断一个汉字是不是 UTF-8 编码
程序员文章站
2024-01-03 15:57:52
...
PHP 如何判断一个汉字是不是 UTF-8 编码
回复内容:
PHP 如何判断一个汉字是不是 UTF-8 编码
用mb_detect_encoding();
$str = 'áéóú'; // 编码ISO-8859-1
mb_detect_encoding($str, 'UTF-8', true); // 判断结果false
汉字编码后还是汉字么?
mb_detect_encoding