php array_column 方法可以返回數組中指定的一列,但不能返回多列,本文將介紹array_column方法的使用,並用代碼示範返回數組中指定多列的方法。
1.array_column說明
array_column可以返回數組中指定一列
array array_column ( array $input , mixed $column_key [, mixed $index_key = null ] )
參數說明:
input
需要取出數組列的多維陣列。 如果提供的是包含一組對象的數組,只有 public 屬性會被直接取出。 為了也能取出 private 和 protected 屬性,類必須實現 __get() 和 __isset() 魔術方法。
column_key
需要傳回值的列,它可以是索引數組的列索引,或者是關聯陣列的列的鍵,也可以是屬性名稱。 也可以是NULL,此時將返回整個數組(配合index_key參數來重設數組鍵的時候,非常管用)
index_key
作為返回數組的索引/鍵的列,它可以是該列的整數索引,或者字串索引值。
例子:
返回數組中name列
<?php$arr = array( array('id'=>1001, 'name'=>'fdipzone', 'age'=>18, 'profession'=>'programmer'), array('id'=>1002, 'name'=>'terry', 'age'=>19, 'profession'=>'designer'), array('id'=>1003, 'name'=>'alex', 'age'=>20, 'profession'=>'tester'),);$result = array_column($arr, 'name');print_r($result);?>
輸出:
Array( [0] => fdipzone [1] => terry [2] => alex)
2.返回數組中指定多列的方法
array_column方法可以返回數組中指定一列,但不能返回多列,因此寫了以下這個方法,支援返回數組中多列,參數調用與array_column相似。
<?php/** * 返回數組中指定多列 * * @param Array $input 需要取出數組列的多維陣列 * @param String $column_keys 要取出的列名,逗號分隔,如不傳則返回所有列 * @param String $index_key 作為返回數組的索引的列 * @return Array */function array_columns($input, $column_keys=null, $index_key=null){ $result = array(); $keys =isset($column_keys)? explode(',', $column_keys) : array(); if($input){ foreach($input as $k=>$v){ // 指定返回列 if($keys){ $tmp = array(); foreach($keys as $key){ $tmp[$key] = $v[$key]; } }else{ $tmp = $v; } // 指定索引列 if(isset($index_key)){ $result[$v[$index_key]] = $tmp; }else{ $result[] = $tmp; } } } return $result;}// 示範代碼$arr = array( array('id'=>1001, 'name'=>'fdipzone', 'age'=>18, 'profession'=>'programmer'), array('id'=>1002, 'name'=>'terry', 'age'=>19, 'profession'=>'designer'), array('id'=>1003, 'name'=>'alex', 'age'=>20, 'profession'=>'tester'),);echo '指定返回列及索引列'.PHP_EOL;$result = array_columns($arr, 'name,profession', 'id');print_r($result);echo PHP_EOL.'指定返回列,不指定索引列'.PHP_EOL;$result = array_columns($arr, 'name,profession');print_r($result);echo PHP_EOL.'不指定返回列,指定索引列'.PHP_EOL;$result = array_columns($arr, null, 'id');print_r($result);echo PHP_EOL.'不指定返回列,不指定索引列'.PHP_EOL;$result = array_columns($arr);print_r($result);?>
輸出:
指定返回列及索引列Array( [1001] => Array ( [name] => fdipzone [profession] => programmer ) [1002] => Array ( [name] => terry [profession] => designer ) [1003] => Array ( [name] => alex [profession] => tester ))指定返回列,不指定索引列Array( [0] => Array ( [name] => fdipzone [profession] => programmer ) [1] => Array ( [name] => terry [profession] => designer ) [2] => Array ( [name] => alex [profession] => tester ))不指定返回列,指定索引列Array( [1001] => Array ( [id] => 1001 [name] => fdipzone [age] => 18 [profession] => programmer ) [1002] => Array ( [id] => 1002 [name] => terry [age] => 19 [profession] => designer ) [1003] => Array ( [id] => 1003 [name] => alex [age] => 20 [profession] => tester ))不指定返回列,不指定索引列Array( [0] => Array ( [id] => 1001 [name] => fdipzone [age] => 18 [profession] => programmer ) [1] => Array ( [id] => 1002 [name] => terry [age] => 19 [profession] => designer ) [2] => Array ( [id] => 1003 [name] => alex [age] => 20 [profession] => tester ))
本文講解了php 返回數組中指定多列的方法 ,更多相關內容請關注php中文網。
相關推薦:
JS擷取訪問裝置資訊的方法
mysql secure-file-priv選項問題的解決方案
php 利用debug_backtrace方法跟蹤代碼調用