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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。