PHP爆炸后如何展平多维数组?

时间:2019-04-03 02:47:39

标签: php arrays

在用PHP爆炸后,如何展平多维数组?

示例:

$string = "the colour of the sky is blue";
$pieces = explode(' ', $string);

所需的输出:

array('the', 'colour', 'of', 'the', 'sky', 'is', 'blue');

谢谢。

0 个答案:

没有答案