메뉴 건너뛰기

프로그램언어

조회 수 26547 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
엄청난 코드의 삽질과 검색결과 완벽하게 돌아 가는 wordwrap 함수를 찾았습니다.
여기 tip&tech 에서 wordwrap 에 관한 글은 다 읽었습니다만..
가장많이 쓰는 인코딩방식인 utf-8 에서는 다른분께서 만드신 함수는 다 깨져 버리더군요.
물론 다른 인코딩방식은 실험 안 해 봤습니다.

이 코드는 php.com 에 tjomi4 님께서 wordwrap() 함수 manual 에 덧붙인 글에 있었습니다.
그럼 잘 쓰시구요.. 즐 코딩..

// # usage: utf8_wordwrap("text",3,"
");
// # by tjomi4`, thanks to SiMM.
// # www.yeap.lv
// modified by DJang
public function utf8_wordwrap($str,$len,$what){

    $from=0;
    $str_length = preg_match_all('/[x00-x7FxC0-xFD]/', $str, $var_empty);
    $while_what = round($str_length / $len);
    while($i <= $while_what){
        $string = preg_replace('#^(?:[x00-x7F]|[xC0-xFF][x80-xBF]+){0,'.$from.'}'.
     '((?:[x00-x7F]|[xC0-xFF][x80-xBF]+){0,'.$len.'}).*#s',
     '$1',$str);
        $total .= $string.$what;
        $from = $from+$len;
        $i++;
    }
    return $total;
}

  1. No Image 07Feb
    by
    2024/02/07 Views 79 

    PHP 버전 숨기기 ( php version hide )

  2. No Image 12Jan
    by
    2023/01/12 Views 188 

    php 두날짜 사이의 모든날짜 배열 만들기

  3. No Image 12Jan
    by
    2023/01/12 Views 202 

    PHP str_replace php 문자열치환

  4. No Image 12Jan
    by
    2023/01/12 Views 214 

    PHP 이미지 리사이즈 함수 imagecopyresized

  5. HTTP 인증하기, 로그인창 띄우기

  6. No Image 27Mar
    by
    2021/03/27 Views 215 

    [PHP기초] 상속기본

  7. No Image 12Jan
    by
    2023/01/12 Views 216 

    코드 생성 하기

  8. No Image 12Jan
    by
    2023/01/12 Views 225 

    폴더 용량 체크

  9. No Image 12Jan
    by
    2023/01/12 Views 225 

    PHP SimpleHtmlDom Parser로 HTML 파싱하기

  10. No Image 26Mar
    by
    2021/03/26 Views 229 

    조건문의 함수실행 여부 if ( 0 && ... )

  11. No Image 12Jan
    by
    2023/01/12 Views 231 

    ereg(), eregi(), ereg_replace(), eregi_replace(), split() 대체

  12. No Image 12Jan
    by
    2023/01/12 Views 233 

    PHP 파일 업로드 FORM 처리

  13. No Image 26Mar
    by
    2021/03/26 Views 234 

    배열 연산자 []= 에 대해서

  14. No Image 27Mar
    by
    2021/03/27 Views 235 

    클래스와 인스턴스 그리고 메소드 만들기

  15. No Image 12Jan
    by
    2023/01/12 Views 235 

    웹페이지 파싱

  16. No Image 12Jan
    by
    2023/01/12 Views 237 

    PHP 디렉토리안에 파일 리스트 가져오기

  17. No Image 12Jan
    by
    2023/01/12 Views 239 

    php www 붙이기

  18. No Image 26Mar
    by
    2021/03/26 Views 240 

    상수, 마법상수, 모든 상수 보기

  19. No Image 12Jan
    by
    2023/01/12 Views 240 

    PHP http -> https 로 전환

  20. No Image 12Jan
    by
    2023/01/12 Views 240 

    PHP 하위 디렉토리 포함 디렉토리 리스트 출력

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved