functionstrSplit($s,$len){
$end='…';
$result='';
$strLen=strlen($s);
if($strLen<=$len){
return$s;
}
$len-=2;
for($i=0;$i<$len&&$i<$strLen;$i++){
$c=$s[$i];
if(ord($c)<0x80){
$result.=$c;
}elseif($i+1<$len){
$result.=$s[$i++].$s[$i];
}
}
return($i<$strLen)?($result.$end):$result;
}
echostrSplit('1234567',10),'
';
echostrSplit('1234567890',10),'
';
echostrSplit('1234中文567890abcdefghijkl',10),'
';
echostrSplit('全部都是中文',10),'
';
echostrSplit('全a部b都c是d中e文',10),'
';
输出:
1234567
1234567890
1234中文…
全部都是…
全a部b都…