mb_convert_encoding

(PHP 4 >= 4.0.6, PHP 5)

mb_convert_encodingConversion d'encodage

Description

string mb_convert_encoding ( string $str , string $to_encoding [, mixed $from_encoding ] )

Convertit la chaîne str depuis l'encodage from_encoding vers l'encodage to_encoding.

Liste de paramètres

str

La chaîne à encoder.

to_encoding

Le type d'encodage utilisé pour la conversion de la chaîne str.

from_encoding

Spécifié par le nom de code des caractères, avant la conversion. Il est soit un tableau, ou une liste séparée par une virgule. Si from_encoding n'est pas spécifié, l'encodage interne sera utilisé.

Voir les encodages supportés.

Valeurs de retour

La chaîne encodée.

Exemples

Exemple #1 Exemple avec mb_convert_encoding()

<?php
/* Convertit l'encodage interne vers SJIS */
$str = mb_convert_encoding($str, "SJIS");

/* Convertit EUC-JP en UTF-7 */
$str = mb_convert_encoding($str, "UTF-7", "EUC-JP");

/* Détecte automatiquement un encodage entre JIS, eucjp-win ou sjis-win,
   Puis convertit en UCS-2LE */
$str = mb_convert_encoding($str, "UCS-2LE", "JIS, eucjp-win, sjis-win");

/* "auto" signifie "ASCII,JIS,UTF-8,EUC-JP,SJIS" */
$str = mb_convert_encoding($str, "EUC-JP", "auto");
?>

Voir aussi

LoadingChargement en cours