summaryrefslogtreecommitdiff
path: root/ext/standard/array.c
Commit message (Collapse)AuthorAgeFilesLines
* Fixed Bug #44212 (array_diff_assoc not reporting missing arguments)Felipe Pena2008-02-221-2/+10
|
* MFH: recursion protection in count()Antony Dovgal2008-02-151-0/+7
|
* MFB: Fixed Bug #42838 (Wrong results in array_diff_uassoc)Felipe Pena2008-02-141-6/+7
|
* Fixed memory leakDmitry Stogov2008-02-141-0/+1
|
* array_slice() - Fixed behavior when NULL is given in third parameter (BC)Felipe Pena2008-02-121-3/+7
|
* MFHAntony Dovgal2008-02-111-2/+2
|
* Fixed bug #44046 (crash inside array_slice() function with an invalidIlia Alshanetsky2008-02-051-7/+3
| | | | | by-ref offset).
* Fixed bug #43505 (Assign by reference bug)Dmitry Stogov2008-01-291-1/+1
|
* MFH: fix #43596 (array_slice(): $length arg ignored when it is 0)Antony Dovgal2008-01-291-2/+6
|
* MFH: fix zts buildRob Richards2008-01-251-3/+3
|
* MFH: endless loop (and stack overflow) protection in compact()Antony Dovgal2008-01-251-0/+8
|
* MFH: fix #43559 (array_merge_recursive() doesn't behave as expected with ↵Antony Dovgal2008-01-231-2/+12
| | | | | | | duplicate NULL values) patch by Felipe
* MFH: Fix bug #42850 array_walk_recursive() leaves references, refix bug #34982Brian Shire2008-01-141-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: - Fixed bug #43541Jani Taskinen2007-12-111-7/+4
|
* Fixed bug #43495 (array_merge_recursive() crashes with recursive arrays)Ilia Alshanetsky2007-12-051-1/+12
|
* MFB: Fixed bug #43482 (array_pad() does not warn on very small padIlia Alshanetsky2007-12-031-0/+5
| | | | | numbers).
* Fixed bug #43386 (array_globals not reset to 0 properly on init)Ilia Alshanetsky2007-11-251-1/+1
|
* MFH: - Fixed bug #43196 (array_intersect_assoc() crashes with non-array input)Jani Taskinen2007-11-061-4/+38
|
* Fixed bug #43197 (array_intersect_assoc() does not emit warning messages forIlia Alshanetsky2007-11-051-0/+2
| | | | | error inputs)
* - MFH from HEAD:Jani Taskinen2007-11-021-1484/+1075
| | | | | | | | | | | | . Folding tags . Parameter parsing . SPL debug info . array function improvements (not all yet) . Improvements to function calling with call_user_* functions . Improvements to debugging info in var_dump/print_r # I propably forgot already something but this all was pretty close tied # to each other so it wasn't possible to do it in parts.
* MFH: fix typoJani Taskinen2007-10-311-4/+4
|
* Fixed bug #43020 (Warning message is missing with shuffle() and more than ↵Scott MacVicar2007-10-181-1/+1
| | | | one argument)
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-18/+18
|
* MF5_2: improved recursion detection in array_walk()Antony Dovgal2007-10-021-1/+3
| | | | | fixes #42752, though the leaks are still there
* MFH: sync (adds php_prefix_varname() API function)Jani Taskinen2007-10-011-101/+99
|
* Fixed memory leak inside array_intersec (coverity issues #403,#404)Ilia Alshanetsky2007-09-221-0/+8
|
* Fixed memory leak inside array_diff() (coverity issues #401,#402)Ilia Alshanetsky2007-09-221-0/+2
|
* MFH: plug leak on error (coverity issue #405)Antony Dovgal2007-09-211-0/+2
|
* Improved speed of array_diff_key(), array_diff_assoc() and array_udiff_assoc().Dmitry Stogov2007-09-211-6/+79
|
* Improved speed of array_intersect_key(), array_intersect_assoc() and ↵Dmitry Stogov2007-09-201-6/+147
| | | | array_uintersect_assoc(). (100 times faster on arrays with 100000 elements)
* - Fix the fix for bug #42233Jani Taskinen2007-08-101-18/+20
|
* - Fixed bug #42233 (Problems with æøå in extract()).Jani Taskinen2007-08-081-9/+20
|
* Fixed bug #41685 (array_push() fails to warn when next index is alreadyIlia Alshanetsky2007-06-241-1/+5
| | | | | occupied).
* Fixed bug #41686 (Omitting length param in array_slice not possible).Ilia Alshanetsky2007-06-181-1/+1
|
* fix foldingAntony Dovgal2007-06-051-68/+51
|
* Fixed bug #41121 (range() overflow handling for large numbers on 32bitIlia Alshanetsky2007-04-191-9/+9
| | | | | machines).
* fixes #40848Wez Furlong2007-03-181-1/+1
|
* Fix UMR in array_user_key_compare() (MOPB24 by Stefan Esser)Stanislav Malyshev2007-03-161-17/+17
|
* Fixed bug #40709 (array_reduce() behaves strange with one item storedIlia Alshanetsky2007-03-041-3/+1
| | | | | arrays).
* MFH: fix #40191 (use of array_unique() with objects triggers segfault)Antony Dovgal2007-01-221-3/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Fixed bug #30074Brian Shire2006-12-171-1/+1
| | | | | | extract with EXTR_REFS was setting EG(unitialized_zval_ptr)->is_ref=1, affecting subsequent usage Added test
* Optimize extract()Ilia Alshanetsky2006-12-101-6/+4
| | | | | # Patch by Brian Shire
* MFH: fix #39576 (array_walk() doesn't separate userdata zval)Antony Dovgal2006-11-221-2/+2
|
* fix leak, add testAntony Dovgal2006-11-151-0/+1
|
* removed bogus charIlia Alshanetsky2006-11-121-1/+1
|
* Optimized array functions utilizing php_splice().Ilia Alshanetsky2006-11-121-15/+5
|
* MFH: Fixed bug#36975 (natcasesort() causes array_pop() to misbehave)Hannes Magnusson2006-11-121-1/+1
|
* optimize zend_hash_init() with known hash table sizes.Ilia Alshanetsky2006-10-031-2/+2
|