PHP에서 문자열을 UTF8로 변경하는 방법은 무엇입니까?
PHP에서는 "iconv()" 함수를 사용하여 문자열을 UTF8로 변경할 수 있습니다. 이 함수의 기능은 필수 문자 인코딩에 따라 문자열을 변환하는 것입니다. 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!