summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
Commit message (Expand)AuthorAgeFilesLines
* New array functions for doing intersection of arrays that are complementaryAndrey Hristov2003-10-091-27/+231
* Fixed clobbering of the source array, when merging complexIlia Alshanetsky2003-10-051-0/+2
* Fixed bug #25708 (extract($GLOBALS, EXTR_REFS) mangles $GLOBALS)Moriyoshi Koizumi2003-10-021-11/+8
* smash a segmentation faultAndrey Hristov2003-09-301-1/+1
* Memory leak fixed (no need of MFH since this is code specific to PHP5)Andrey Hristov2003-09-301-0/+1
* signed/unsigned compiler warning fixesHartmut Holzgraefe2003-09-261-1/+1
* Fixed typo.Ilia Alshanetsky2003-09-261-1/+1
* 4 new functions :Andrey Hristov2003-09-231-21/+203
* improve the fix for #25494. If more then one bad parameter is passedAndrey Hristov2003-09-221-4/+7
* Fixed bug #25494 (array_merge allowing "false" as argument (silent whenJay Smith2003-09-111-1/+9
* revert that, it did not fix anythingfoobar2003-08-131-1/+0
* Fix external builds (configure run outside srcdir)foobar2003-08-131-0/+1
* emalloc -> safe_emallocIlia Alshanetsky2003-08-111-19/+19
* Fixed bug #24897 (inconsistent behavior of shuffle() & array_multisort())Ilia Alshanetsky2003-08-091-2/+2
* Do not assume array contains numeric values.Ilia Alshanetsky2003-08-091-1/+1
* Fixed bug #24980 (array_reduce() uses first element as default runningIlia Alshanetsky2003-08-081-1/+3
* Replace fast_call_user_function() with zend_call_function()Zeev Suraski2003-08-051-14/+73
* Fix bug #24652 - Sterling, do you begin to think that maybe it wasn't suchZeev Suraski2003-08-041-1/+1
* Removed unused variable.Ilia Alshanetsky2003-07-251-1/+0
* - Use the new infrastructure of zend_symtable_*() (fixes bug #24565)Zeev Suraski2003-07-221-5/+1
* Fixed bug #24198 (Invalid recursion detection in array_merge_recurcive())Ilia Alshanetsky2003-06-161-1/+1
* silly bugAndrey Hristov2003-06-121-2/+2
* updating license information in the headers.James Cox2003-06-101-3/+3
* fix array_key_exists() from HANDLE_NUMERIC() changesSterling Hughes2003-06-051-2/+6
* initialize these to NULLSterling Hughes2003-05-201-1/+1
* convert array functions to use fast_call_user_function(), gives a niceSterling Hughes2003-05-201-6/+13
* Fixed bug #22463 and bug #23581Moriyoshi Koizumi2003-05-111-35/+49
* Bug Fix (22433). When the bottom of a range() is chr(0) or the top is chr(25...Sara Golemon2003-05-021-5/+12
* Fixed implicit cast issue with is*() and to*() functionsMoriyoshi Koizumi2003-04-161-2/+2
* Kludgy fix for floating point drift causing problems like range(1.0,1.5,0.1) ...Sara Golemon2003-04-031-2/+4
* MFBRasmus Lerdorf2003-04-011-0/+4
* CSIlia Alshanetsky2003-03-271-178/+172
* additional speedup for array_shift(). No need to rehash if the removed element'sAndrey Hristov2003-02-221-2/+8
* rehash only in case something is changed.Andrey Hristov2003-02-221-1/+3
* - Fixed bug #22088 (array_shift() leaves next index to be +1 too much)foobar2003-02-061-2/+3
* Added array_walk_recursive() function that can apply array_walk recursivelyIlia Alshanetsky2003-02-051-24/+70
* - Fixed bug: #21998 (array_pop() did not reset the current array position)foobar2003-02-031-0/+2
* zend_error -> php_error_docref.Ilia Alshanetsky2003-01-241-2/+1
* ARG_COUNT(ht) -> ZEND_NUM_ARGS().Ilia Alshanetsky2003-01-211-2/+2
* added array_combine().Andrey Hristov2003-01-131-0/+42
* Fixed small leaks in array_map() in case the first parameter is NULL likeMoriyoshi Koizumi2003-01-031-0/+3
* Bump year.Sebastian Bergmann2002-12-311-1/+1
* Make range operate on the copies of the parameters rather then modify theIlia Alshanetsky2002-12-251-7/+7
* When low & high are the same return an array containing the low value.Ilia Alshanetsky2002-12-201-31/+86
* @- Let array_search() accept objects as a needle under ZendEngine2. (Moriyoshi)Moriyoshi Koizumi2002-12-091-1/+3
* Fixed bug #20865, array_key_exists() could not locate NULL keys.Ilia Alshanetsky2002-12-061-0/+5
* Remove pointless checks for array_init() return values.Ilia Alshanetsky2002-12-051-6/+2
* Fixed segfaults of array_walk() when keys are passed to cb by reference.Moriyoshi Koizumi2002-12-041-7/+5
* Fixed leaks in array_walk()Moriyoshi Koizumi2002-12-031-1/+1
* Improved the error reporting portion of array_walk() as suggested by MarkusMoriyoshi Koizumi2002-11-261-29/+7