/** * 根據(jù)中文裁減字符串 * @param $string - 字符串 * @param $length - 長度 * @param $doc - 縮略后綴 * @return 返回帶省略號被裁減好的字符 " /> 992tv在线成人免费观看,大波视频国产精品久久 ,久久日韩精品一区二区五区

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

根據(jù)中文裁減字符串函數(shù)的php代碼

復(fù)制代碼 代碼如下:
define(CHARSET, 'UTF-8'); // 系統(tǒng)默認編碼

/**
* 根據(jù)中文裁減字符串
* @param $string - 字符串
* @param $length - 長度
* @param $doc - 縮略后綴
* @return 返回帶省略號被裁減好的字符串
*/
function cutstr( $string, $length, $dot = '...' ) {
if ( strlen( $string ) <= $length ) {
return $string;
}
$pre = chr( 1 );
$end = chr( 1 );
$string = str_replace( array( '&', '"', '<', '>' ), array( $pre . '&' . $end, $pre . '"' . $end, $pre . '<' . $end, $pre . '>' . $end ), $string );
$strcut = '';
if ( strtolower( CHARSET ) == 'utf-8' ) {
$n = $tn = $noc = 0;
while ( $n < strlen( $string ) ) {
$t = ord( $string[$n] );
if ( $t == 9 || $t == 10 || (32 <= $t && $t <= 126) ) {
$tn = 1;
$n++;
$noc++;
} elseif ( 194 <= $t && $t <= 223 ) {
$tn = 2;
$n += 2;
$noc += 2;
} elseif ( 224 <= $t && $t <= 239 ) {
$tn = 3;
$n += 3;
$noc += 2;
} elseif ( 240 <= $t && $t <= 247 ) {
$tn = 4;
$n += 4;
$noc += 2;
} elseif ( 248 <= $t && $t <= 251 ) {
$tn = 5;
$n += 5;
$noc += 2;
} elseif ( $t == 252 || $t == 253 ) {
$tn = 6;
$n += 6;
$noc += 2;
} else {
$n++;
}
if ( $noc >= $length ) {
break;
}
}
if ( $noc > $length ) {
$n -= $tn;
}
$strcut = substr( $string, 0, $n );
} else {
for ( $i = 0; $i < $length; $i++ ) {
$strcut .= ord( $string[$i] ) > 127 ? $string[$i] . $string[++$i] : $string[$i];
}
}
$strcut = str_replace( array( $pre . '&' . $end, $pre . '"' . $end, $pre . '<' . $end, $pre . '>' . $end ), array( '&', '"', '<', '>' ), $strcut );
$pos = strrpos( $strcut, chr( 1 ) );
if ( $pos !== false ) {
$strcut = substr( $strcut, 0, $pos );
}
return $strcut . $dot;
}

php技術(shù)根據(jù)中文裁減字符串函數(shù)的php代碼,轉(zhuǎn)載需保留來源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 桑日县| 彭泽县| 湖南省| 湄潭县| 西华县| 叶城县| 沙洋县| 乌兰浩特市| 安宁市| 麻城市| 保康县| 汾西县| 大竹县| 景谷| 龙游县| 黑水县| 勃利县| 武夷山市| 壤塘县| 宁陕县| 宜兰县| 称多县| 轮台县| 威远县| 临朐县| 宝应县| 阳曲县| 横山县| 栖霞市| 勐海县| 兴城市| 渭源县| 盘山县| 合江县| 延吉市| 珠海市| 会泽县| 叙永县| 冷水江市| 郴州市| 阳新县|