php中將二維數組轉為一維數組的方法是:可以使用array_column()函數來實作。此函數傳回一個數組,數組的值為輸入數組中某個單一列的值。具體方法如:【array_column($records, 'first_name')】。
相關函數介紹:
(推薦教學:php教學)
array_column()函數傳回一個數組,數組的值為輸入數組中某個單一列的值。
函數語法:
array_column(array,column_key,index_key);
參數說明:
#array 必要。指定要使用的多維數組(記錄集)。
column_key 必備。需要傳回值的列。可以是索引數組的列的整數索引,或是關聯數組的列的字串鍵值。此參數也可以是 NULL,此時會傳回整個陣列(配合index_key 參數來重置陣列鍵的時候,非常管用)。
index_key 可選。作為傳回數組的索引/鍵的列。
現有如下數組:
$records = [ [ 'id' => 2135, 'first_name' => 'John', 'last_name' => 'Doe', ], [ 'id' => 3245, 'first_name' => 'Sally', 'last_name' => 'Smith', ], [ 'id' => 5342, 'first_name' => 'Jane', 'last_name' => 'Jones', ], [ 'id' => 5623, 'first_name' => 'Peter', 'last_name' => 'Doe', ] ];
程式碼實作:
範例1:
<?php $first_names = array_column($records, 'first_name'); var_dump($first_names); ?>
列印結果:
$first_names = ['John','Sally','Jane','Peter'];
範例2:
<?php $first_names = array_column($records, 'first_name','id'); var_dump($first_names); ?>
列印結果:
$first_names = [2135 =>'John',3245 => 'Sally',5342 => 'Jane',5623 => 'Peter'];
以上是php中怎麼將二維數組轉為一維數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!