/** * 根據中文裁減字符串 * @param $string - 字符串 * @param $length - 長度 * @param $doc - 縮略后綴 * @return 返回帶省略號被裁減好的字符 " /> xxxx视频在线,精品国产免费人成电影在线观...,理论不卡电影大全神

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

根據中文裁減字符串函數的php代碼

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

/**
* 根據中文裁減字符串
* @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技術根據中文裁減字符串函數的php代碼,轉載需保留來源!

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

主站蜘蛛池模板: 襄汾县| 凤城市| 上虞市| 永寿县| 桐梓县| 乳源| 磐安县| 奇台县| 临潭县| 西吉县| 米易县| 江阴市| 榆林市| 苍南县| 丹巴县| 崇礼县| 洪江市| 曲水县| 石林| 周口市| 梅州市| 剑阁县| 称多县| 临沧市| 乃东县| 宝兴县| 申扎县| 溆浦县| 孟津县| 杭锦旗| 东乡族自治县| 焦作市| 曲沃县| 洛阳市| 永吉县| 梓潼县| 景泰县| 赣州市| 阿勒泰市| 龙海市| 松江区|