Contents

Views 20367 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
PHP의 substr() 함수를 쓸 때 한글이 깨지는 경우가 있다.
이런 경우 아래와 같은 함수로 대체하면 된다.

1. PHP 4.0 이상을 쓰면 mb_substr()을 이용
mb_substr($str, 0, 10, 'EUC-KR');
또는
mb_substr($str, 0, 10, 'UTF-8');

 
2. 그 외는 아래 함수를 작성해서 이용
function trim_str($str, $length) {
    if (!$str) return '';
    preg_match('/^([\xa1-\xfe]{2}|.){'.$length.'}/s', $str, $tmp_str);
    return (!$tmp_str[0]) ? $str : ($tmp_str[0].'...');
}


?

List of Articles
No. Category Subject Author Date Views
333 System/OS [linux] 아파치설치/설정 hooni 2003.04.23 14492
332 System/OS [linux] 아파치설치/설정 - SSI(Server Side Include) hooni 2003.04.23 13207
331 System/OS [linux] 아파치설치/설정 - 사용인증 hooni 2003.04.23 15086
330 System/OS [linux] 아파치설치/설정 - 알리어싱(aliasing) hooni 2003.04.23 51370
329 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 14569
328 System/OS [linux] 아파치설치/설정(모니터링) hooni 2003.04.23 14154
327 System/OS [linux] 우분투 APM + phpmyadmin 설치 hooni 2013.10.07 49328
326 System/OS [linux] 웹로그분석기(webalizer) 설치 & 팁 hooni 2003.04.23 14882
325 System/OS [linux] 이기종간의 파일 공유(Samba) hooni 2003.04.23 14901
324 Develop [linux] 임베디드 리눅스 (embedded linux) file hooni 2013.04.23 7356
323 System/OS [linux] 종료와 종료코드 확인(환경변수에서) hooni 2003.04.23 15548
322 System/OS [linux] 처음 설치부터 APM 설치까지 (업데이트 할 것) hooni 2013.04.23 38271
Board Pagination Prev 1 ... 66 67 68 69 70 71 72 73 74 75 ... 98 Next
/ 98