utf8decode_lib
Proto type
string utf8decode_lib(string str, string type)Description
Arguments
(string) str - input string
(string) type - CP949, EUC-KR, BIG5, SJISExample
<?php
$str = "한글a와 똠방각하";
$str = utf8encode_lib($str);
echo utf8decode_lib ($str, 'CP949')."\n";
echo utf8decode_lib ($str, 'EUC-KR')."\n";
?>See also
Last updated