일상+

php 글자 자르기 mb_substr 본문

컴퓨터공학

php 글자 자르기 mb_substr

이종준 2009. 1. 30. 09:18
php에서 substr은 바이트 단위로 자르는 것이고

mb_substr은 글자 단위로 자르는 것이다.

사용법은 간단하다.

mb_substr('문자열이들어간다.',0,5,'utf-8');

위와같을때 결과는 '문자열이들' 까지 즉, 5글자가 출력이 된다.
Comments