欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

解决中英文字符串长度问题函数_PHP教程

程序员文章站 2022-03-31 17:49:04
...
复制代码 代码如下:

function strSplit($s, $len) {
$end = '…';
$result = '';
$strLen = strlen($s);
if ($strLen return $s;
}
$len -= 2;
for ($i=0; $i $c = $s[$i];
if (ord($c) $result .= $c;
} elseif ($i+1 $result .= $s[$i++] . $s[$i];
}
}
return ($i }

echo strSplit('1234567', 10), '
';
echo strSplit('1234567890', 10), '
';
echo strSplit('1234中文567890abcdefghijkl', 10), '
';
echo strSplit('全部都是中文', 10), '
';
echo strSplit('全a部b都c是d中e文', 10), '
';

输出:
1234567
1234567890
1234中文…
全部都是…
全a部b都…

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/317788.htmlTechArticle复制代码 代码如下: 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];...