PHP で文字列を UTF8 に変更するにはどうすればよいですか?
PHP では、「iconv()」関数を使用して文字列を UTF8 に変更できます。この関数の機能は、必要な文字エンコーディングに従って文字列を変換することです。その構文は " iconv(in, out,str)」を使用する場合は、inに文字列のエンコーディングを設定し、outにUTF8を設定し、strに変換する文字列を設定します。
変換例
$str = "123456789"; $str = iconv('ASCII', 'UTF8', $str);
使用例
<?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; ?>
<?php $tab = array("UTF-8", "ASCII", "Windows-1252", "ISO-8859-15", "ISO-8859-1", "ISO-8859-6", "CP1256"); $chain = ""; foreach ($tab as $i) { foreach ($tab as $j) { $chain .= " $i$j ".iconv($i, $j, "$my_string"); } } echo $chain; ?>
推奨チュートリアル:「PHPチュートリアル」
以上がPHPで文字列をUTF8に変更するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。