Contents

Develop
2015.11.10 15:51

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

Views 1317 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] 최상위 ViewController 가져오기

    Date2015.10.12 CategoryDevelop Byhooni Views1059
    Read More
  2. [ios] 상위 ViewController 가져오기

    Date2015.10.12 CategoryDevelop Byhooni Views953
    Read More
  3. [c] 기막힌 정렬 코드 ㅋㄷ

    Date2015.10.13 CategoryDevelop Byhooni Views807
    Read More
  4. [linux] CentOS Apache 웹서버에 HTTPS 적용

    Date2015.10.23 CategoryDevelop Byhooni Views783
    Read More
  5. [ios] ViewController Push할 때 애니메이션 효과

    Date2015.10.23 CategoryDevelop Byhooni Views870
    Read More
  6. [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기

    Date2015.10.23 CategoryDevelop Byhooni Views1180
    Read More
  7. [c] 한글 문자열 출력

    Date2015.11.10 CategoryDevelop Byhooni Views1675
    Read More
  8. [php] 한글 문자열 자르기 (utf-8)

    Date2015.11.10 CategoryDevelop Byhooni Views1317
    Read More
  9. [js] AngularJS 란?

    Date2015.11.26 CategoryDevelop Byhooni Views885
    Read More
  10. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)

    Date2016.03.23 CategoryDevelop Byhooni Views1608
    Read More
  11. [ios] How To Use UIScrollView to Scroll and Zoom Content (Using Swift)

    Date2016.03.23 CategoryDevelop Byhooni Views7323
    Read More
  12. [ios] Did UIScrollView End Scrolling?

    Date2016.04.19 CategoryDevelop Byhooni Views1017
    Read More
Board Pagination Prev 1 ... 57 58 59 60 61 62 63 64 65 66 ... 71 Next
/ 71