PHP Doku:: Konvertiert Zeichensatzkodierung als Ausgabepuffer-Handler (output buffer handler) - function.ob-iconv-handler.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und Zeichenkodierungiconviconv Funktionenob_iconv_handler

Ein Service von Reinhard Neidl - Webprogrammierung.

iconv Funktionen

<<iconv

Internationalization Functions>>

ob_iconv_handler

(PHP 4 >= 4.0.5, PHP 5)

ob_iconv_handlerKonvertiert Zeichensatzkodierung als Ausgabepuffer-Handler (output buffer handler)

Beschreibung

string ob_iconv_handler ( string $contents , int $status )

Die Funktion konvertiert die in Zeichensatz internal_encoding kodierte Zeichenkette in output_encoding.

internal_encoding und output_encoding sollten über die Konfigurationsdatei php.ini oder über die Funktion iconv_set_encoding() definiert werden.

Parameter-Liste

ob_start() enthält Informationen über die Parameter.

Rückgabewerte

ob_start() enthält Informationen über die Rückgabewerte.

Beispiele

Beispiel #1 ob_iconv_handler()-Beispiel:

<?php
iconv_set_encoding
("internal_encoding""UTF-8");
iconv_set_encoding("output_encoding""ISO-8859-1");
ob_start("ob_iconv_handler"); // start output buffering
?>

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
st33mann at gmx dot n3t
4.10.2005 20:43
Just a quick note that may be helpful for some:
It seems to me that this function also modifies the HTTP Content-Type header that's sent to the client (at least in combination with the iconv_set_encoding() function).

If you specify an encoding ending with "//TRANSLIT" or "//IGNORE" (valid in iconv), it will still send the encoding name in the HTTP header. This makes it an invalid character set unfortunately.

For example:
<?php
iconv_set_encoding
("internal_encoding","UTF-8");
iconv_set_encoding("output_encoding","ISO-8859-1//TRANSLIT");
ob_start("ob_iconv_handler");
?>
will send a Content-Type header of "ISO-8859-1//TRANSLIT".



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)