summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Prevent too many error reports from being displayedMoriyoshi Koizumi2002-11-261-0/+1
* Fixed incorrect error messages of array_walk() in case the callback isMoriyoshi Koizumi2002-11-261-1/+30
* Fixed some odd behaviours of range()Moriyoshi Koizumi2002-11-231-5/+25
* Fixed bug #20381Moriyoshi Koizumi2002-11-151-0/+1
* @- Added an optional "step" parameter to range(). (Jon)Jon Parise2002-11-141-25/+37
* Added GLOB_ONLYDIR and GLOB_BRACE for compatiable systems for the glob()John Coggeshall2002-11-131-1/+1
* Fixed a memory leak in array_fill().Ilia Alshanetsky2002-11-051-1/+4
* revert patchSterling Hughes2002-10-101-37/+57
* clean these functions up using zend_parse_parameters and nuke the use ofSterling Hughes2002-10-091-57/+37
* small cleanups...Sterling Hughes2002-10-091-4/+1
* ws fixes.Andrey Hristov2002-09-211-35/+38
* New function added - array_intersect_assoc() similar to array_intersect()Andrey Hristov2002-09-211-10/+56
* Fixing my zts fix.Andrey Hristov2002-09-121-3/+3
* Removed magic numbers about the behavior of php_array_diff - proposed byAndrey Hristov2002-09-121-13/+16
* Fix ZTS build.Edin Kadribasic2002-09-111-3/+3
* - Little whitespace changesDerick Rethans2002-09-111-20/+30
* New function added : array_diff_assoc() . Like array_diff() but doesAndrey Hristov2002-09-111-11/+55
* Fixed ZTS build.Edin Kadribasic2002-09-101-4/+4
* @- Fixed array_merge_recursive() to avoid problems with merging cyclicalAndrei Zmievski2002-09-101-3/+11
* @- Added ability to extract() variables as references via OR'able EXTR_REFSAndrei Zmievski2002-09-091-4/+29
* php_error_docrefMarcus Boerger2002-08-241-77/+61
* Fixes array test 004.phpt. Nice copy paste error.Marcus Boerger2002-08-211-1/+1