PHP汉字长度为1 计算字符串长度

方法

function utf8_strlen($string = null) {
    // 将字符串分解为单元
    preg_match_all("/./us", $string, $match);
    // 返回单元个数
    return count($match[0]);
}

 

posted @ 2019-08-27 11:55  吉奥羽欣  阅读(152)  评论(0编辑  收藏  举报