2011-06-08 188 views
0

我有一個數組是這樣的:添加到一個多維數組PHP

$where = array(
'product_id' => $product_id, 
'item_id' => $item_id 
); 

我想要添加到這個陣列,根據條件,所以我可以做

if($condition){ 
$where = array() 
}else{ 
$where = array() 
} 

而且重複原始內容兩次,但理想情況下,我想這樣做array_push(array('id' => $id), $where);

謝謝!

+0

? – 2011-06-08 14:14:15

回答

1

只需通過指定索引和值將其添加到您的數組。

if($condition){ 
$where['id'] = $id; 
}else{ 
$where['other'] = $other; 
} 
+0

完美,謝謝! – dzm 2011-06-08 14:14:54

3

您可以通過以下方式添加一些你的數組:

$where['mykey'] ='myvalue'; 
你到底想要的結果