mb_detect_encoding() 是 PHP 中的内置函数,用于检测字符串的编码。
用法:
string|false mb_detect_encoding( string $string, array|string|null $encodings = null, bool $strict = false )
Parameters: 该函数接受下面说明的三个参数。
- $string: 需要检测编码的字符串。
- $编码:要检查的以逗号分隔的编码列表。如果未指定,则使用流行编码的列表。
- $严格:一个布尔值,指示是否使用严格检测。如果设置为 “true”,则仅返回输入字符串编码的 super-sets 编码。
返回值:该函数返回检测输入字符串的编码,如果未检测到编码,则返回“false”。
示例 1:下面的程序演示了mb_detect_encoding()函数。
PHP
<?php
$string = "Hello world!";
$encoding = mb_detect_encoding($string);
echo "The string '$string' is encoded in '$encoding'.";
?>
输出:
The string 'Hello world!' is encoded in 'ASCII'.
示例 2:下面的程序演示了mb_detect_encoding()函数。
PHP
<?php
$string = "This is an English sentence.";
$encoding = mb_detect_encoding($string);
if ($encoding === 'UTF-8') {
echo "The string '$string' is encoded in UTF-8.";
} else {
echo "The string '$string' is not encoded in UTF-8.";
}
?>
输出:
The string 'This is an English sentence.' is not encoded in UTF-8.
参考:https://www.php.net/manual/en/function.mb-detect-encoding.php
相关用法
- PHP mb_detect_order()用法及代码示例
- PHP mb_decode_numericentity()用法及代码示例
- PHP mb_decode_mimeheader()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_http_input()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
- PHP mb_parse_str()用法及代码示例
- PHP mb_encode_numericentity()用法及代码示例
- PHP mb_encoding_aliases()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strimwidth()用法及代码示例
- PHP mb_ereg_search_regs()用法及代码示例
- PHP mb_ereg_search_init()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_ereg_search_pos()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_detect_encoding() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。