I often have a 2-dimensional array:
array(
array('key' => 'value1'),
array('key' => 'value2'),
...
);
And need to form a 1-dimensional array:
array('value1', 'value2')
This can easily be done with foreach, but I wonder if there's some php 5.3 way to do it in one line.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…