mb_check_encoding() 函數是 PHP 中的內置函數,用於檢查給定字符串對於指定編碼是否有效。
用法:
bool mb_check_encoding( array|string|null $value = null, string $encoding = null )
參數:該函數接受兩個參數,如下所述:
- $value:該參數接受要檢查的字節流或數組。如果該值為 null,則它將檢查從開始到請求的所有輸入。
- $encoding:該參數接受預期的編碼。
返回值:該函數成功時返回“true”,失敗時返回“false”。
注意:
- 的值$值和$編碼8.0.0版本中參數為空。
- 該函數現在接受一個值數組,並且正式地它隻接受字符串值。
示例1:下麵的代碼演示了PHPmb_check_encoding()方法。
PHP
<?php
// Declare a variable and assign
// string value
$str = "Welcome to GeeksforGeeks";
// Check string for specified encoding
$bool = mb_check_encoding($str, "ASCII");
// Returns true means string is
// valid for specified encoding
var_dump($bool);
?>
輸出
bool(true)
示例 2:下麵的代碼演示了 PHP 的另一個示例mb_check_encoding()方法。
PHP
<?php
// Declare a variable and assign
// string value
$str = "Welcome to GeeksforGeeks";
// Check string for base64 encoding
$bool = mb_check_encoding($str, "base64");
// Returns true means string is
// valid for specified encoding
var_dump($bool);
?>
輸出
bool(false)
參考: https://www.php.net/manual/en/function.mb-check-encoding.php
相關用法
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_convert_encoding()用法及代碼示例
- PHP mb_convert_variables()用法及代碼示例
- PHP mb_convert_kana()用法及代碼示例
- PHP mb_strlen()用法及代碼示例
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自vkash8574大神的英文原創作品 PHP mb_check_encoding() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。