'UTF-8'에 해당되는 글 1건

  1. 2008.02.15 UTF-8로 바꾸는 법, 문자열 인코딩 바꾸기

$db['to_charset'] = 'UTF-8';
$db['from_charset'] ='EUC-KR';

  • $row[$key] = mb_convert_encoding($value,$db['to_charset'],$db['from_charset']);
  • $row[$key] = iconv ($db['from_charset'],$db['to_charset']  , $value );
















Posted by 알 수 없는 사용자
,