UTF-8与GBK编码下PHP获取字符串长度的函数
时间:2021-07-01 10:21:17
帮助过:21人阅读
/* - * 统计字符串长度
- *@param $str 被统计字符串
- */
- function sstrlen($str) {
- global $charset;
- $n = 0; $p = 0; $c = ”;
- $len = strlen($str);
- if($charset == ‘utf-8′) {
- for($i = 0; $i < $len; $i++) {
- $c = ord($str{$i});
- if($c > 252) {
- $p = 5;
- } elseif($c > 248) {
- $p = 4;
- } elseif($c > 240) {
- $p = 3;
- } elseif($c > 224) {
- $p = 2;
- } elseif($c > 192) {
- $p = 1;
- } else {
- $p = 0;
- }
- $i+=$p;$n++;
- }
- } else {
- for($i = 0; $i < $len; $i++) {
- $c = ord($str{$i});
- if($c > 127) {
- $p = 1;
- } else {
- $p = 0;
- }
- $i+=$p;$n++;
- }
- }
return $n; - }
- ?>
|