chengkun
2025-04-18 1bb985f32f2efe0f9dd69f3cf29a1c809b1cf96d
1
2
3
4
5
6
7
8
9
10
11
<?php
function smarty_function_sublen($paramer,$template){
    extract($params);
    if($html==""){
        $str=strip_tags(html_entity_decode(str_replace(array("&amp;","&nbsp;"," "),array("&","",""),$str),ENT_QUOTES));
    }
    $length=$length?$length:20;
    $charset=$charset?$charset:"utf-8";
    return mb_substr($str,0,$length,$charset);
}
?>