我拥有的是
$string = 'one;two;three;four;five;six;seven;eight;nine;ten';
我需要的是:
$array = [
['one', 'two', 'three'],
['four', 'five', 'six'],
['seven', 'eight', 'nine'],
['ten'],
];
基本上字符串可以有无限的值。
答案 0 :(得分:13)
可以使用array_chunk
函数完成:
$string = 'one;two;three;four;five;six;seven;eight;nine;ten';
$array = array_chunk(explode(';', $string), 3);