Query: mb_internal_encoding
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MB_INTERNAL_ENCODING(3) 1 MB_INTERNAL_ENCODING(3) mb_internal_encoding - Set/Get internal character encodingSYNOPSISmixed mb_internal_encoding ([string $encoding = mb_internal_encoding()])DESCRIPTIONSet/Get the internal character encodingPARAMETERSo $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.RETURN VALUESIf $encoding is set, then Returns TRUE on success or FALSE on failure. In this case, the character encoding for multibyte regex is NOT changed. If $encoding is omitted, then the current character encoding name is returned.EXAMPLESExample #1 mb_internal_encoding(3) example <?php /* Set internal character encoding to UTF-8 */ mb_internal_encoding("UTF-8"); /* Display current internal character encoding */ echo mb_internal_encoding(); ?>SEE ALSOmb_http_input(3), mb_http_output(3), mb_detect_order(3), mb_regex_encoding(3). PHP Documentation Group MB_INTERNAL_ENCODING(3)
Related Man Pages |
---|
mb_strtolower(3) - php |
mb_detect_encoding(3) - php |
mb_strrichr(3) - php |
mb_convert_variables(3) - php |
mb_strcut(3) - php |
Similar Topics in the Unix Linux Community |
---|
Replacing the last character |
Bash encoding, how to change |
Charsets and encoding details |
File enconding and conversion |
View file encoding then change encoding. |