(PHP 4 >= 4.0.6, PHP 5, PHP 7)
mb_internal_encoding — 设置/获取内部字符编码
encoding
encoding
字符编码名称使用于 HTTP 输入字符编码转换、HTTP 输出字符编码转换、mbstring 模块系列函数字符编码转换的默认编码。
You should notice that the internal encoding is totally different from the one for multibyte regex.
如果设置了 encoding
,则成功时返回 TRUE
, 或者在失败时返回 FALSE
。
In this case, the character encoding for multibyte regex is NOT changed.
如果省略了 encoding
,则返回当前的字符编码名称。
Example #1 mb_internal_encoding() 例子
<?php
/* 设置内部字符编码为 UTF-8 */
mb_internal_encoding("UTF-8");
/* 显示当前的内部字符编码*/
echo mb_internal_encoding();
?>