PHP.nl

mb_internal_encoding

mb_internal_encoding

Set/Get internal character encoding

 **mb_internal_encoding**  $encoding

Set/Get the internal character 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. encoding

If is set, then return.success In this case, the character encoding for multibyte regex is NOT changed. If is omitted, then the current character encoding name is returned. encoding``encoding

As of PHP 8.0.0, a is thrown if the value of is an invalid encoding. Prior to PHP 8.0.0, a was emitted instead. ValueError``encoding``E_WARNING

Voorbeeld: example

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

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

mb_http_input``mb_http_output``mb_detect_order``mb_regex_encoding