Contents

Develop
2015.11.10 15:51

[php] 한글 문자열 자르기 (utf-8)

Views 2778 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

그누보드/lib/common.lib.php line 890 

// 한글 한글자(2byte)는 길이 2, 공란.영숫자.특수문자는 길이 1 

function cut_str($str, $len, $suffix="…") 
{
    // 여기 추가,
    $s = iconv_substr($str, 0, $len, "utf-8");

    // 아래 주석처리 ! 
    //$s = substr($str, 0, $len); 
    //$cnt = 0; 
    //for ($i=0; $i<strlen($s); $i++) 
    //    if (ord($s[$i]) > 127) 
    //        $cnt++; 
    //$s = substr($s, 0, $len - ($cnt % 2)); 
    
    if (strlen($s) >= strlen($str))
        $suffix = ""; 
        
    return $s . $suffix; 
}

 

* 참고: PHP5에 iconv_substr( string str, int offset [, int length [, string charset]] ) 내장되었네요. 
* utf-8 적용시 cut_str()으로 잘 안될 때가 있어서 수정해봤습니다.


?

  1. [ios][swift] 초간단 To-do Memo

  2. [ios][swift] 초간단 TableView 샘플

  3. [ios] 웹뷰 history.back() ㅋㄷ

  4. 플라스터(Plaster) 수업 내용

  5. [ios] 기본 네비게이션바의 타이틀, back버튼 위치와 속성 변경

  6. [ios] UUID 생성 + Key Chain 연동

  7. [c#] 전자금융보안론 발표/설치 자료(툴바 소스코드)

  8. [ppt] 전자금융보안론 발표/설치 자료

  9. XE Core 1.8.18 본문 작성시 태그(html) 사라지는 버그

  10. [io] Apple Watch, Today Extension 앱ID 설정

  11. [ios] Did UIScrollView End Scrolling?

  12. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)

Board Pagination Prev 1 ... 9 10 11 12 13 14 15 16 17 18 ... 99 Next
/ 99