#
139e9824 |
| 15-May-2013 |
David Soria Parra |
Fix array_colum segfault Separate zval to avoid gc from freeing |
#
734e165d |
| 22-Apr-2013 |
Sara Golemon |
array_column() - Use entire subject array when NULL passed for second param. This starts to look like array_values(), except that you can reindex the arrays using the third parameter. |
#
1a03bd5d |
| 22-Apr-2013 |
Sara Golemon |
Allow array_column() to take -1 as a valid value in third param Also do some cleanup and simplification to make this code more readable in the long term. |
#
7b34324f |
| 22-Apr-2013 |
Sara Golemon |
Fix handling of double keys in array_column Also fix resource test to not localize __FILE__ to cwd. |
#
d8a5f41a |
| 01-Apr-2013 |
Xinchen Hui |
Fixed bug parameter is casted to string of array_column |
#
0173c4ba |
| 20-Mar-2013 |
David Soria Parra |
Merge branch 'pull-request/257' into PHP-5.5 * pull-request/257: array_column: Fix compile-time warnings array_column: Removed array_pluck() alias array_column: Set array_p
Merge branch 'pull-request/257' into PHP-5.5 * pull-request/257: array_column: Fix compile-time warnings array_column: Removed array_pluck() alias array_column: Set array_pluck as an alias for array_column array_column: Implement ability to specify an index column Cleaning up a memory leak. array_column: Adding test for IS_OBJECT and converting object to string array_column: Using add_next_index_zval() at nikic's recommendation. array_column: Improved tests array_column: Cleaning up, as recommended in pull request #56 comments Fixing typo in test for array_column() Simplify the code and use zend_hash_next_index_insert() Adding test for columns not present in all rows for array_column(). Adding tests for the negative results of array_column() Implement new array function array_column()
show more ...
|
#
f5bf1ba8 |
| 20-Mar-2013 |
Ben Ramsey |
array_column: Fix compile-time warnings |
#
28634bf6 |
| 12-Mar-2013 |
Nikita Popov |
Forgot to remove some now unused variables |
Revision tags: php-5.3.22, php-5.5.0alpha5, php-5.4.12 |
|
#
fcc6611d |
| 16-Feb-2013 |
Nikita Popov |
Add support for non-scalar Iterator keys in foreach RFC: https://wiki.php.net/rfc/foreach-non-scalar-keys |
Revision tags: php-5.3.22RC2, php-5.4.12RC2, php-5.3.22RC1, php-5.4.12RC1, php-5.5.0alpha4, php-5.3.21, php-5.4.11 |
|
#
5bc2854b |
| 11-Jan-2013 |
Ben Ramsey |
array_column: Implement ability to specify an index column |
Revision tags: php-5.5.0alpha3, php-5.3.21RC1, php-5.4.11RC1, php-5.3.20, php-5.4.10, php-5.5.0alpha2, php-5.3.20RC1, php-5.4.10RC1, php-5.3.19, php-5.4.9, php-5.5.0alpha1, php-5.3.19RC1, php-5.4.9RC1, php-5.3.18, php-5.4.8, php-5.3.18RC1, php-5.4.8RC1, php-5.3.17, php-5.4.7, php-5.4.7RC1, php-5.3.16, php-5.4.6, php-5.4.6RC1, php-5.4.5, php-5.3.15, php-5.3.15RC1, php-5.4.5RC1 |
|
#
94d5b251 |
| 21-Jun-2012 |
Ben Ramsey |
Cleaning up a memory leak. |
Revision tags: php-5.3.14, php-5.4.4, php-5.3.14RC2, php-5.4.4RC2, php-5.3.14RC1, php-5.4.4RC1, php-5.3.13, php-5.4.3, php-5.4.2, php-5.3.12, php-5.3.11, php-5.4.1 |
|
#
20ab3033 |
| 16-Apr-2012 |
Ben Ramsey |
array_column: Adding test for IS_OBJECT and converting object to string |
#
66a02eb2 |
| 14-Apr-2012 |
Ben Ramsey |
array_column: Using add_next_index_zval() at nikic's recommendation. |
#
e921d28a |
| 14-Apr-2012 |
Ben Ramsey |
array_column: Cleaning up, as recommended in pull request #56 comments |
#
6a27b890 |
| 14-Apr-2012 |
Ben Ramsey |
Simplify the code and use zend_hash_next_index_insert() |
#
9035a1ed |
| 14-Apr-2012 |
Ben Ramsey |
Implement new array function array_column() array_column() returns the values of the specified column from a multi-dimensional array. |
#
a666285b |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year |
#
0a7395e0 |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year |
#
a2045ff3 |
| 01-Jan-2013 |
Xinchen Hui |
Happy New Year~ |
#
4cceeb25 |
| 06-May-2012 |
Xinchen Hui |
Merge branch 'PHP-5.3' into PHP-5.4 * PHP-5.3: Fixed bug #61730 (Segfault from array_walk modifying an array passed by reference)
|
#
7ccd5943 |
| 06-May-2012 |
Xinchen Hui |
Fixed bug #61730 (Segfault from array_walk modifying an array passed by reference) |
Revision tags: php-5.3.11RC2, php-5.4.1RC2, php-5.3.11RC1, php-5.4.1RC1, PHP-5.4.1-RC1 |
|
#
37d7df72 |
| 02-Mar-2012 |
Nikita Popov |
Fix bug #52719: array_walk_recursive crashes if third param of the function is by reference |
#
e7810c1f |
| 02-Mar-2012 |
Nikita Popov |
Fix bug #52719: array_walk_recursive crashes if third param of the function is by reference |
#
fda8d2fe |
| 02-Mar-2012 |
Xinchen Hui |
MFH: Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX) |
Revision tags: php-5.4.0, php-5.4.0RC8 |
|
#
33125e23 |
| 12-Feb-2012 |
Xinchen Hui |
Improved fix for #61058, and add test script |