Develop
2015.11.10 15:51
[php] 한글 문자열 자르기 (utf-8)
Views 2774 Comment 0
그누보드/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()으로 잘 안될 때가 있어서 수정해봤습니다.
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
771 | Develop |
[android] 버전 별 앱 알림 설정으로 이동하는 방법
![]() |
hooni | 2016.11.28 | 6028 |
770 | Develop |
[ios] FlckrFeed Example App (Swift)
![]() |
hooni | 2016.11.27 | 7495 |
769 | Develop | [android] 딜레이를 구현하기 위한 꼼수 | hooni | 2016.11.24 | 4445 |
768 | Develop | [android] How can I place app icon on launcher home screen? | hooni | 2016.11.15 | 6360 |
767 | Develop | [android] Calling activity function from separate class | hooni | 2016.11.15 | 7412 |
766 | Develop | [Android Error] The number of method references in a .dex file cannot exceed 64K | hooni | 2016.11.10 | 5480 |
765 | Develop | [android] 레이아웃 사이즈 변경 (동적; programmatically) | hooni | 2016.11.07 | 2779 |
764 | Develop | [android] 초간단 얼럿 (AlertDialog) | hooni | 2016.10.21 | 5444 |
763 | Develop | [android] dp, px 서로 변환 | hooni | 2016.10.21 | 7603 |
762 | Develop |
[matlab] ZigZag-Scanning (2-D Array)
![]() |
hooni | 2016.10.15 | 4760 |
761 | Develop |
[matlab] 정보은닉 스테가노그래피(Steganography) 수업
![]() |
hooni | 2016.10.03 | 2712 |
760 | Develop |
[c] RSA 암호화 구현(gmp 라이브러리 활용)
![]() |
hooni | 2016.10.03 | 2741 |