728x90
반응형
■ PHP 한글 깨짐 문자 인코딩 변환
● iconv ( string $from_encoding , string $to_encoding , string $string )
● urlencode(string $string)
<?php
$tmp_name = "테스트";
// 1. iconv
$tmp_name = iconv("utf8", "euckr", $tmp_name);
// 2. urlencode
$tmp_name = urlencode($tmp_name);
/*
결과: 동일하게 변환됨
*/
?>
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP] 코드실행 지연 sleep/usleep (0) | 2020.11.25 |
---|---|
[PHP] 문자열 따옴표 처리 addslashes(), stripslashes() (0) | 2020.09.15 |
[PHP] 파일명 변경 rename() (0) | 2020.09.15 |
[PHP] zip 압축/해제 압축파일 엔트리 접근 (0) | 2020.09.15 |
[PHP] 배열 내 특정값 포함여부 체크 in_array() (0) | 2020.09.15 |