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

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('/(?

3.打印结果如下:

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

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

你可能感兴趣的:(PHP - 分割中文字符串为数组)