码迷,mamicode.com
首页 > Web开发 > 详细

PHP计算字符串的个数

时间:2016-08-15 14:42:57      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:php 字符串 个数

function stringLength($string){
    $re[‘utf-8‘]   = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
    preg_match_all($re[‘utf-8‘], $string, $match);
    return count($match[0]);
}

PHP计算字符串的个数

标签:php 字符串 个数

原文地址:http://ouyangjun.blog.51cto.com/10284323/1838030

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!