array_column 특정 첨자값만 출력하고 싶을 경우
array_column 특정 첨자값만 출력하고 싶을 경우
array_column
(PHP 5 >= 5.5.0, PHP 7)
array_column — Return the values from a single column in the input array
Description ¶
array array_column ( array $input , mixed $column_key [, mixed $index_key = null ] )
array_column() returns the values from a single column of the input, identified by the column_key. Optionally, an index_key may be provided to index the values in the returned array by the values from the index_key column of the input array.
Parameters ¶
input
A multi-dimensional array or an array of objects from which to pull a column of values from. If an array of objects is provided, then public properties can be directly pulled. In order for protected or private properties to be pulled, the class must implement both the __get() and __isset() magic methods.
column_key
The column of values to return. This value may be an integer key of the column you wish to retrieve, or it may be a string key name for an associative array or property name. It may also be NULL to return complete arrays or objects (this is useful together with index_key to reindex the array).
index_key
The column to use as the index/keys for the returned array. This value may be the integer key of the column, or it may be the string key name.
Return Values ¶
Returns an array of values representing a single column from the input array.
Changelog ¶
Version Description
7.0.0 Added the ability for the input parameter to be an array of objects.
Examples ¶
Example #1 Get the column of first names from a recordset
<?php
// Array representing a possible record set returned from a database
$records = array(
array(
'id' => 2135,
'first_name' => 'John',
'last_name' => 'Doe',
),
array(
'id' => 3245,
'first_name' => 'Sally',
'last_name' => 'Smith',
),
array(
'id' => 5342,
'first_name' => 'Jane',
'last_name' => 'Jones',
),
array(
'id' => 5623,
'first_name' => 'Peter',
'last_name' => 'Doe',
)
);
$first_names = array_column($records, 'first_name');
print_r($first_names);
?>
The above example will output:
Array
(
[0] => John
[1] => Sally
[2] => Jane
[3] => Peter
)
Example #2 Get the column of last names from a recordset, indexed by the "id" column
<?php
// Using the $records array from Example #1
$last_names = array_column($records, 'last_name', 'id');
print_r($last_names);
?>
The above example will output:
Array
(
[2135] => Doe
[3245] => Smith
[5342] => Jones
[5623] => Doe
)
게시판 목록
개발자팁
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 26 | MySQL |
아우겐나이스
|
21년 전 | 5833 | |
| 25 | JavaScript |
아우겐나이스
|
21년 전 | 5215 | |
| 24 | MySQL | 21년 전 | 7772 | ||
| 23 | MySQL | 21년 전 | 5068 | ||
| 22 | 기타 | 21년 전 | 8065 | ||
| 21 | 기타 | 21년 전 | 5970 | ||
| 20 | MySQL | 21년 전 | 6608 | ||
| 19 | MySQL | 21년 전 | 9362 | ||
| 18 | 기타 | 21년 전 | 6955 | ||
| 17 | MySQL | 21년 전 | 9487 | ||
| 16 | JavaScript | 21년 전 | 6732 | ||
| 15 | 기타 | 21년 전 | 4760 | ||
| 14 | 기타 | 21년 전 | 7671 | ||
| 13 | 기타 | 21년 전 | 5476 | ||
| 12 | JavaScript |
Recluse
|
21년 전 | 6492 | |
| 11 | 기타 |
아우겐나이스
|
21년 전 | 5429 | |
| 10 | 기타 |
Recluse
|
21년 전 | 5063 | |
| 9 | 기타 | 21년 전 | 5937 | ||
| 8 | MySQL | 21년 전 | 7464 | ||
| 7 | PHP | 21년 전 | 6941 | ||
| 6 | JavaScript | 21년 전 | 8175 | ||
| 5 | PHP | 21년 전 | 6203 | ||
| 4 | Linux | 21년 전 | 7071 | ||
| 3 | PHP | 21년 전 | 7316 | ||
| 2 | 기타 | 21년 전 | 5664 | ||
| 1 | JavaScript | 22년 전 | 7676 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기