Develop
2015.11.10 15:51
[php] 한글 문자열 자르기 (utf-8)
조회 수 2995 댓글 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()으로 잘 안될 때가 있어서 수정해봤습니다.
-
[ios] How To Use UIScrollView to Scroll and Zoom Content (Using Objective-C)
-
[js] AngularJS 란?
-
[ppt] OCB기술개발팀 OJT 자료
-
[php] 한글 문자열 자르기 (utf-8)
-
[c] 한글 문자열 출력
-
[ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기
-
[ios] ViewController Push할 때 애니메이션 효과
-
[linux] CentOS Apache 웹서버에 HTTPS 적용
-
[eng] 숙제 ㅋㅋㅋ
-
[c] 기막힌 정렬 코드 ㅋㄷ
-
[ios] 상위 ViewController 가져오기
-
[ios] 최상위 ViewController 가져오기