Thứ Sáu, 15 tháng 6, 2012

Lấy chuỗi không bị cắt kỹ tự !

 function create_summary($text,$num){
    //$text = strip_tags($cont);   
    if(mb_strlen($text,'UTF-8') > $num){
   
        $endpos = mb_strpos($text,' ',$num,'UTF-8');
        $dots = '...';
        if(!$endpos){
        $endpos = mb_strlen($text,'UTF-8');
        $dots = '';
        }   
    }else{
        $endpos = mb_strlen($text,'UTF-8');
        $dots ='';
    }                  
    return mb_substr($text,0,$endpos,'UTF-8').$dots;
}

===================================

Before


After

Không có nhận xét nào: