这个mb_detect_order()PHP 中的函数可用于设置/获取字符编码检测的顺序。 PHP 4.2.0 或更高版本支持此函数。
用法
array|bool mb_detect_order(str $encoding)
参数
mb_detect_order()只接受一个参数$encoding和string,array和bool。
$encoding−此编码参数是一个数组或逗号分隔的字符编码列表。如果省略或为空,则以数组形式返回当前字符编码检测顺序。
返回值
设置编码检测顺序时,成功返回True,失败返回False。
示例
<?php
// Set detection order by enumerated list
mb_detect_order("eucjp-win,sjis-win,UTF-8");
// Set detection order by array
$array[] = "ASCII";
$array[] = "JIS";
$array[] = "EUC-JP";
mb_detect_order($array);
// It shows the current detection order
echo implode(", ", mb_detect_order());
?>
输出
ASCII, JIS, EUC-JP
相关用法
- PHP mb_check_encoding()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_substr_count()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP metaphone()用法及代码示例
- PHP mhash_get_hash_name()用法及代码示例
- PHP mysqli_get_server_info()用法及代码示例
- PHP money_format()用法及代码示例
- PHP mysqli_data_seek()用法及代码示例
- PHP mysqli_insert_id()用法及代码示例
- PHP mysqli_fetch_assoc()用法及代码示例
- PHP mkdir()用法及代码示例
- PHP mysqli_connect_error()用法及代码示例
- PHP mhash_keygen_s2k()用法及代码示例
注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – How to set the character encoding detection order using mb_detect_order()?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。