인코딩을 확인할 때 쓰기 좋은 방법
1
2
3
4
5
6
7
8
9
10
|
$str = "테스트";
$encode = array('ASCII','UTF-8','EUC-KR');
$str_encode = mb_detect_encoding($str, $encode);
if(strtoupper($str_encode) == 'UTF-8') {
echo 'UTF-8 입니다';
}
mb_detect_encoding($str, 'EUC-KR,UTF-8');
mb_detect_encoding($str, 'auto'); // 자동 감지
mb_detect_encoding($str, array('EUC-KR','UTF-8'));
|
'IT기술 > php' 카테고리의 다른 글
php 모듈 작동하는지 확인하기 (0) | 2018.10.06 |
---|---|
String 인코딩 확인 후 UTF-8 변환하기 mb_detect_encoding (0) | 2018.10.06 |
문자열의 모든 줄바꿈 앞에 HTML 줄바꿈 태그를 삽입 (0) | 2018.10.06 |
php 넘어온 값(request) 확인 (0) | 2018.10.06 |
array_search 주어진 값으로 배열을 검색하여 성공시 해당하는 키를 반 (0) | 2018.10.06 |