美文网首页会读博客
PHP - 分割中文字符串为数组

PHP - 分割中文字符串为数组

作者: 化城 | 来源:发表于2018-11-06 16:39 被阅读8次

    str_split()

    这个函数,它的作用是将字符串分割为数组.

    1.应用实例:

    $str='abcde';
    str_plite($str);
    打印结果如下:
    Array
    (
        [0] => a
        [1] => b
        [2] => c
        [3] => d
        [4] => e
    )
    

    这时候再用str_splite() 分割中文字符串就会乱码,就会悲剧的发现乱码了.

    2.解决办法

    /**
     * 将字符串分割为数组
     * @param  string $str 字符串
     * @return array       分割得到的数组
     */
    function mb_str_split($str){
        return preg_split('/(?<!^)(?!$)/u', $str );
    }
    
    $str='会读博客';
    mb_str_split($str);
    
    

    3.打印结果如下:

    Array
    (
        [0] => 会
        [1] => 读
        [2] => 博
        [3] => 客
    )
    

    https://www.willread.cc/p/5be152a2efc26

    相关文章

      网友评论

        本文标题:PHP - 分割中文字符串为数组

        本文链接:https://www.haomeiwen.com/subject/psbuxqtx.html