分解分号字符串并将其中的部分分块

Explode a semicolon string and chunk the parts out of it

我有的是

$string = 'one;two;three;four;five;six;seven;eight;nine;ten';

我需要的是:

$array = [
   ['one', 'two', 'three'],
   ['four', 'five', 'six'],
   ['seven', 'eight', 'nine'],
   ['ten'],
];

基本上字符串可以有无限的值。

可以用array_chunk函数来完成:

$string = 'one;two;three;four;five;six;seven;eight;nine;ten';
$array = array_chunk(explode(';', $string), 3);