diff options
author | Ben Ramsey <ramsey@php.net> | 2012-04-13 23:17:56 -0500 |
---|---|---|
committer | Ben Ramsey <ramsey@php.net> | 2013-01-11 14:16:19 -0600 |
commit | 9035a1ed246d4d2d867edc01616ca96b40a7cd11 (patch) | |
tree | 62a8b26d5b32d70f9d389991369703d9df4ddfb5 /ext/standard/php_array.h | |
parent | e1410b5a70543856de3978603b41fbf2ca5d330c (diff) | |
download | php-git-9035a1ed246d4d2d867edc01616ca96b40a7cd11.tar.gz |
Implement new array function array_column()
array_column() returns the values of the specified column from a
multi-dimensional array.
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r-- | ext/standard/php_array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h index 9099017290..2126c09d0b 100644 --- a/ext/standard/php_array.h +++ b/ext/standard/php_array.h @@ -71,6 +71,7 @@ PHP_FUNCTION(array_replace_recursive); PHP_FUNCTION(array_keys); PHP_FUNCTION(array_values); PHP_FUNCTION(array_count_values); +PHP_FUNCTION(array_column); PHP_FUNCTION(array_reverse); PHP_FUNCTION(array_reduce); PHP_FUNCTION(array_pad); |