當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP mb_detect_encoding()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_detect_encoding() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。