array_column
array_column — Return the values from a single column in the input array.Description
array_column( array $array,,array_column() returns the values from a single column of the array, 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.
int|string|null $column_key,
int|string|null $index_key = null ): array
Parameters
array
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. The value is cast as usual for array keys (however, prior to PHP 8.0.0, objects supporting conversion to string were also allowed).
Return Values
Returns an array of values representing a single column from the input array.More information about array_column on official PHP documentation site
array_column - Popular snippets
- PHP 8.0 / MySQL 5.7 mt_rand strtotime array_map date array_column max array_keys
last run:
2023-10-31 14:44:52
18
- PHP 8.1 / MySQL 5.7 array_combine array_column
last run:
2024-05-06 01:31:04
15
- PHP 8.1 / MySQL 5.7 print_r array_column
last run:
2022-06-22 13:13:16
12
- PHP 8.1 / MySQL 5.7 array_sum array_column var_dump floor
last run:
2022-05-11 20:38:46
11
- PHP 8.1 / MySQL 5.7 array_sum array_column print_r
last run:
2024-07-26 09:03:55
11
- PHP 8.0 / MySQL 5.7 mt_rand strtotime array_map date array_column max array_keys
last run:
2021-11-11 15:27:34
9
- PHP 8.0 / MySQL 5.7 json_decode array_column print_r
last run:
2023-08-31 07:55:34
8
- PHP 8.0 / MySQL 5.7 mt_rand strtotime array_map date array_column max array_keys
last run:
2021-11-11 15:26:49
8
- PHP 8.0 / MySQL 5.7 array_column array_sum printf
last run:
2024-10-22 11:43:25
7
- PHP 8.1 / MySQL 5.7 array_combine array_column var_export
last run:
2022-08-12 08:45:12
7
array_column - New snippets
-
PHP 8.1 / MySQL 5.7 is_null array_column
added at:
2024-11-13 15:45:12
1
-
PHP 8.1 / MySQL 5.7 is_null array_column json_encode var_dump
added at:
2024-11-13 13:17:52
1
-
PHP 8.2.13 / MySQL 5.7 array_column array_sum printf
added at:
2024-10-22 11:43:46
1
-
PHP 5.6 / MySQL 5.7 array_column array_sum printf
added at:
2024-10-22 11:43:29
1
-
PHP 8.2.13 / MySQL 5.7 strtotime array_multisort array_column date explode microtime
added at:
2024-09-23 22:38:51
1
-
PHP 8.2.13 / MySQL 5.7 microtime strtotime array_multisort array_column explode
added at:
2024-09-23 22:33:36
1
-
PHP 8.2.13 / MySQL 5.7 microtime strtotime array_multisort array_column explode
added at:
2024-09-23 22:33:23
1
-
PHP 8.2.13 / MySQL 5.7 microtime array_multisort strtotime array_column explode
added at:
2024-09-23 22:30:39
1
-
PHP 8.2.13 / MySQL 5.7 microtime array_multisort strtotime array_column explode
added at:
2024-09-23 22:30:13
1
-
PHP 8.2.13 / MySQL 5.7 microtime array_multisort array_column explode
added at:
2024-09-23 22:21:34
2