/** * 根據中文裁減字符串 * @param $string - 字符串 * @param $length - 長度 * @param $doc - 縮略后綴 * @return 返回帶省略號被裁減好的字符 " /> 亚洲xxx大片,欧洲亚洲两性,国产一区二区伦理

色尼玛亚洲综合影院,亚洲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代碼,轉載需保留來源!

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

主站蜘蛛池模板: 乌鲁木齐县| 和顺县| 都昌县| 平乐县| 正阳县| 邯郸市| 牟定县| 克什克腾旗| 虹口区| 华容县| 金华市| 东城区| 六盘水市| 涿鹿县| 贺兰县| 武邑县| 嘉兴市| 逊克县| 扎赉特旗| 花莲县| 蕲春县| 台南市| 平邑县| 育儿| 寿宁县| 高平市| 福州市| 满城县| 阿巴嘎旗| 连平县| 手机| 白朗县| 望城县| 中山市| 明溪县| 石嘴山市| 错那县| 璧山县| 虎林市| 临夏县| 望谟县|