我想知道如何整合一个数组。$all 数组(如下所示)是一个数组中的数据示例,该数组实际上是从数据库查询中返回的。目标是使用整数作为最终数组中的键将数据放入一维数组中。
$all = array(0=>array('ItemID' => 12), 1=>array('ItemID' => 13), 2=>array('ItemID' => 14));
echo "<pre>" . print_r($all, 1) . "</pre>";
/*
goal for format of consolidated array:
Array
(
[0] => 12
[1] => 13
[2] => 14
)
*/