본문 바로가기
웹 개발 이야기/php

[PHP] 텍스트자르고 말줄임표 붙이기

by Gommin 2023. 3. 8.
function text_dot($text, $len){
        $text = strip_tags($text);
        if(strlen($text)<=$len) {
                return $text;
        } else {
                $text = htmlspecialchars_decode($text);
                $text = mb_strcut($text, 0, $len, 'utf-8');
                $text = htmlspecialchars($text);
                return $text."…";
        }
}

'웹 개발 이야기 > php' 카테고리의 다른 글

[PHP] calendar_basic  (0) 2023.03.09
[PHP] 인스타그램 피드 가져오기 (Rapid API 이용)  (0) 2023.03.09
[PHP] 그누보드 자동 로그인 풀릴 때  (0) 2023.03.09
[PHP] 파일 업로드  (0) 2023.03.08
[PHP] URL 출력하기  (0) 2023.03.08

댓글