php 截取字符串,要求最多占据N个汉字的位置

方法一:

/**
* 该方法只适合普通数据
* param string $strCut 需要截取的字符串
* param int $length N个汉字的位置
*/
function substrLength($strCut,$length){
    $n = 0;
    $m = 0;
    $h = 0;
    $l = 0;
    $maxLength = $length * 3;
    for($i=0; $i < $maxLength;$i++){
        if (ord($strCut[$i]) >128){
            $m++;
            if($m == 3){
                $l++;
                $n++;
                $m = 0;
            }
        }else{
            $h++;
            $l++;
            if($h==2){
                $n++;
                $h = 0;
            }
        }
        if($n > $length-2) break;
    }
    $strNew = mb_substr($strCut,0,$l-1,'utf-8');
    if($n > $length-2) {
        $strNew .= "...";
    }
    return  $strNew;
}

方法二:

/**
     * 截取显示子字符串长度,1个汉字长度为2,一个字母或数字长度为1
     *
     * @param String $str 待截取的字符串
     * @param integer $showLength 显示的字符串长度
     * @param string $strEncoding 输入的字符串编码,默认为utf8
     * @return string
     */
    public function GetSubStrShown($str, $showLength, $strEncoding = 'utf8') {
        $result = '';
        $len = 0;
        for($i = 0, $count = mb_strlen ( $str, $strEncoding ); $i < $count; $i ++) {
            $tmp = mb_substr ( $str, $i, 1, $strEncoding );
            $tmpLen = strlen ( mb_convert_encoding ( $tmp, "gbk", $strEncoding ) );
            if ($len + $tmpLen > $showLength)
                return $result;
            $len += $tmpLen;
            $result .= $tmp;
        }
        return $result;
    }

 

你可能感兴趣的:(php算法,字符串截取)