PHP Dokumentation: Function mb-internal-encoding
12. Januar 2010 von werner
mb_internal_encoding
(PHP 4 >= 4.0.6, PHP 5)
mb_internal_encoding — Set/Get internal character encoding
Beschreibung
Set/Get the internal character encoding
Parameter-Liste
- 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.
Rückgabewerte
If encoding is set, then Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben. If encoding is omitted, then the current character encoding name is returned.
Beispiele
Beispiel #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();
?>Anmerkungen
Hinweis: Das interneEncoding oder das mit mb_regex_encoding() festgelegteZeichenencoding wird als Zeichenencoding für diese Funktion genutzt.
Siehe auch
- mb_http_input() – Detect HTTP input character encoding
- mb_http_output() – Set/Get HTTP output character encoding
- mb_detect_order() – Set/Get character encoding detection order