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


PHP mb_detect_order()用法及代码示例


这个mb_detect_order()PHP 中的函数可用于设置/获取字符编码检测的顺序。 PHP 4.2.0 或更高版本支持此函数。

用法

array|bool mb_detect_order(str $encoding)

参数

mb_detect_order()只接受一个参数$encodingstringarraybool

  • $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

相关用法


注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – How to set the character encoding detection order using mb_detect_order()?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。