PHP UTF-8 -> EUC-KR 또는 EUC-KR -> UTF-8 으로 변환
페이지 정보
본문
<?php
function convStr($str) {
$dect_str = mb_detect_encoding($str, "UTF-8, EUC-KR");
if ($dect_str != "EUC-KR") {
$conv_result = iconv("UTF-8", "EUC-KR" ,$str);
} else {
$conv_result = iconv("EUC-KR", "UTF-8", $str);
}
return $conv_result;
}
?>
관련자료
http://jupiter0410.tistory.com/71
function convStr($str) {
$dect_str = mb_detect_encoding($str, "UTF-8, EUC-KR");
if ($dect_str != "EUC-KR") {
$conv_result = iconv("UTF-8", "EUC-KR" ,$str);
} else {
$conv_result = iconv("EUC-KR", "UTF-8", $str);
}
return $conv_result;
}
?>
관련자료
http://jupiter0410.tistory.com/71
댓글목록
등록된 댓글이 없습니다.