= 4.0.6, PHP 5, PHP 7, PHP 8)mb_internal_encoding — 設(shè)置/獲取內(nèi)部字符編碼說(shuō)明mb_internal_encoding(string $encoding = mb_internal_encod">
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
mb_internal_encoding — 設(shè)置/獲取內(nèi)部字符編碼
設(shè)置/獲取內(nèi)部字符編碼
encoding
encoding
字符編碼名稱(chēng)使用于 HTTP 輸入字符編碼轉(zhuǎn)換、HTTP 輸出字符編碼轉(zhuǎn)換、mbstring 模塊系列函數(shù)字符編碼轉(zhuǎn)換的默認(rèn)編碼。
You should notice that the internal encoding is totally different from the one for multibyte regex.
如果設(shè)置了 encoding
,則成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
In this case, the character encoding for multibyte regex is NOT changed.
如果省略了 encoding
,則返回當(dāng)前的字符編碼名稱(chēng)。
示例 #1 mb_internal_encoding() 例子
<?php
/* 設(shè)置內(nèi)部字符編碼為 UTF-8 */
mb_internal_encoding("UTF-8");
/* 顯示當(dāng)前的內(nèi)部字符編碼*/
echo mb_internal_encoding();
?>