封装实现mb_substr

 截取并加上 
		if(mb_strlen($str,$chrset)>$len){
			$str=mb_substr($str,0,$len,$charset)."...";
		}
		return $str;
	}
?>

 

你可能感兴趣的:(php)