我有陣列的動態數量,我需要讓他們多維數組結合數組多維數組
Array ([id] => 182 [name] => item1)
Array ([id] => 185 [name] => item2)
Array ([id] => 186 [name] => item3)
這個
$all = Array (Array ([0] => Array ([id] => 182 [name] => item1) ,
Array ([1] => Array ([id] => 185 [name] => item2) ,
Array ([2] => Array ([id] => 186 [name] => item3)
)
我嘗試這種代碼,但它不工作
$all_ids = Array ([0] => 182 [1] => 185 [2] => 186);
foreach($all_id as $id){
// use code to return row
$row= 'select id , name from table where id ='.$id; // something like this which return row
$all= $all+ $row ;
}
任何幫助,請提前致謝
非常感謝你的幫助 – Ouda
我試過你的代碼,它的工作完美 – Ouda
沒問題!如果你願意,你可以接受答案。謝謝! – eeetee