update : 2015.11.03
php.shukuma.com

검색:
 
 
Set/Get internal character encoding

mb_internal_encoding

(PHP 4 >= 4.0.6, PHP 5)

mb_internal_encodingSet/Get internal character encoding

설명

mixed mb_internal_encoding ([ string $encoding = mb_internal_encoding() ] )

Set/Get the internal character encoding

인수

encoding

encoding is the character encoding name used for the HTTP input character encoding conversion, HTTP output character encoding conversion, and the default character encoding for string functions defined by the mbstring module. You should notice that the internal encoding is totally different from the one for multibyte regex.

반환값

If encoding is set, then 성공 시 TRUE를, 실패 시 FALSE를 반환합니다. In this case, the character encoding for multibyte regex is NOT changed. If encoding is omitted, then the current character encoding name is returned.

예제

Example #1 mb_internal_encoding() example

<?php
/* Set internal character encoding to UTF-8 */
mb_internal_encoding("UTF-8");

/* Display current internal character encoding */
echo mb_internal_encoding();
?>

참고