我想只取出每一個鍵值裡面的uid,但不要有下標。 回覆內容: 我想只取出每一個鍵值裡面的uid,但不要有下標。 array_column($arr, 'uid'); 也可以 $temp = array(); foreach ($a as $b) { $temp[] = $b['uid']; }