本文操作环境:windows7系统、PHP7.1版、DELL G3电脑php怎么查询变量的编码?mb_detect_encoding(php 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)mb_detect_enco
本文操作环境:windows7系统、PHP7.1版、DELL G3电脑
php怎么查询变量的编码?
mb_detect_encoding
(php 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
mb_detect_encoding — 检测字符的编码
说明
mb_detect_encoding(string $str, mixed $encoding_list = mb_detect_order(), bool $strict = false): string
检测字符串 str 的编码。
参数
str
待检查的字符串。
encoding_list
encoding_list 是一个字符编码列表。 编码顺序可以由数组或者逗号分隔的列表字符串指定。
如果省略了 encoding_list 将会使用 detect_order。
strict
strict 指定了是否严格地检测编码。 默认是 false。
返回值
检测到的字符编码,或者无法检测指定字符串的编码时返回 false。
范例
示例 #1 mb_detect_encoding() 例子
<?php
echo mb_detect_encoding($str);
echo mb_detect_encoding($str, "auto");
echo mb_detect_encoding($str, "JIS, eucjp-win, sjis-win");
$ary[] = "ASCII";
$ary[] = "JIS";
$ary[] = "EUC-JP";
echo mb_detect_encoding($str, $ary);
?>
参见
mb_detect_order() - 设置/获取 字符编码的检测顺序
--结束END--
本文标题: php怎么查询变量的编码
本文链接: https://lsjlt.com/news/998.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0