메뉴 건너뛰기

프로그램언어

2016.12.23 00:41

깨진 한글 체크

조회 수 20223 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

<?php
function is_regular_string($cstring)
{
    $slen = strlen($cstring);

    for($i=0;$i<$slen;$i++) 
    {
      // 1byte 문자 
      if(ord($cstring[$i])<=127) 
      {
          $i++;
      }
      // 2byte 문자             
      else if(ord($cstring[$i])>=hexdec('80')) 
      {
        if (isset($cstring{$i+1}) && $cstring{$i+1} != '' ) 
        {                    
           if(((ord($cstring{$i})>=hexdec('B0') && ord($cstring{$i+1})>=hexdec('A1')) && (ord($cstring{$i})<=hexdec('C8') && ord($cstring{$i+1})<=hexdec('FE'))) || ((ord($cstring{$i})>=hexdec('81') && ord($cstring{$i+1})>=hexdec('41')) && (ord($cstring{$i})<=hexdec('A0') && ord($cstring{$i+1})<=hexdec('FE'))) || ((ord($cstring{$i})>=hexdec('A1') && ord($cstring{$i+1})>=hexdec('41')) && (ord($cstring{$i})<=hexdec('C6') && ord($cstring{$i+1})<=hexdec('A0'))) || ((ord($cstring{$i})>=hexdec('A4') && ord($cstring{$i+1})>=hexdec('A1')) && (ord($cstring{$i})<=hexdec('A4') && ord($cstring{$i+1})<=hexdec('FE'))))
            {
            $i++;
            }
           else 
            {
             return false;
            }                
        }
      }
      else
      {
        return false;
      }
    }
    return true;
}
?>


List of Articles
번호 제목 날짜 조회 수
260 PHP 에서의 소켓(Socket) 통신 2014.04.12 20395
259 웹에서 Excel 로 출력하기 2014.03.26 20356
258 mysql 에러 구문 표시 2014.02.27 20349
257 jquery 이용 아이디 중복체크 실시간 2014.04.12 20341
256 [PHP] 서버 운영하시는분 서버 꺼졌을때 메시지 띄우기 2015.04.06 20324
255 fopen 파일 열기 2015.04.14 20297
254 CodeIgniter에서 PHPExcel 사용하기 file 2017.03.06 20289
253 php 파일 확장자 2014.02.27 20230
» 깨진 한글 체크 2016.12.23 20223
251 파일 업로드 (중복처리) 2017.03.06 20181
250 MySQL DB 중복여부 검사하여 없는 것만 추가 2015.04.14 20157
249 파일 이름에서 확장자 추출마스터 2017.03.07 20061
248 정규표현식 매치를 수행 (preg_match) 2016.12.23 20050
247 날짜 일수 차이 계산 2017.03.07 19977
246 PHP Mcrypt 라이브러리를 활용한 암호화 시스템 2016.12.22 19972
245 implode — 문자열로 배열 원소를 결합 2016.12.23 19951
244 explode - 문자열 나눔 2016.12.23 19943
243 class_exists 클래스가 정의되었는지 확인 2016.12.23 19881
242 웹페이지 프린트 하기 html 수준 2014.03.26 19805
241 php 파일 다운로드 구현 2014.02.27 19794
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved