str_split() | 将字符串按字符数量分割成数组 PHP函数

$str = '101000101010202000';
$result = str_split($str, 6);
print_r($result);