Comment changer une chaîne en UTF8 en PHP ?
En PHP, vous pouvez utiliser la fonction "iconv()" pour changer la chaîne en UTF8. La fonction de cette fonction est de convertir la chaîne selon l'encodage de caractères requis. Sa syntaxe est ". iconv(in, out,str)", lors de son utilisation, définissez le codage de la chaîne, définissez-le sur UTF8 et définissez str sur la chaîne à convertir.
Exemple de conversion
$str = "123456789"; $str = iconv('ASCII', 'UTF8', $str);
Exemple d'utilisation
<?php //some German $utf8_sentence = 'Weiß, Goldmann, Göbel, Weiss, Göthe, Goethe und Götz'; //UK setlocale(LC_ALL, 'en_GB'); //transliterate $trans_sentence = iconv('UTF-8', 'ASCII//TRANSLIT', $utf8_sentence); //gives [Weiss, Goldmann, Gobel, Weiss, Gothe, Goethe und Gotz] //which is our original string flattened into 7-bit ASCII as //an English speaker would do it (ie. simply remove the umlauts) echo $trans_sentence . PHP_EOL; //Germany setlocale(LC_ALL, 'de_DE'); $trans_sentence = iconv('UTF-8', 'ASCII//TRANSLIT', $utf8_sentence); //gives [Weiss, Goldmann, Goebel, Weiss, Goethe, Goethe und Goetz] //which is exactly how a German would transliterate those //umlauted characters if forced to use 7-bit ASCII! //(because really ä = ae, ö = oe and ü = ue) echo $trans_sentence . PHP_EOL; ?>
Tutoriel recommandé : "Tutoriel PHP"
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!