当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。