标签: php arrays
在用PHP爆炸后,如何展平多维数组?
示例:
$string = "the colour of the sky is blue"; $pieces = explode(' ', $string);
所需的输出:
array('the', 'colour', 'of', 'the', 'sky', 'is', 'blue');
谢谢。