Revision tags: php-4.3.2RC3, RELEASE_0_9b |
|
#
4e9e9c6e |
| 11-May-2003 |
Moriyoshi Koizumi |
Fixed bug #22463 and bug #23581 |
#
07c67906 |
| 02-May-2003 |
Sara Golemon |
Bug Fix (22433). When the bottom of a range() is chr(0) or the top is chr(255), the for loop carries over and never exits. |
Revision tags: SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init |
|
#
0c5548e6 |
| 16-Apr-2003 |
Moriyoshi Koizumi |
Fixed implicit cast issue with is*() and to*() functions |
#
465bb613 |
| 03-Apr-2003 |
Sara Golemon |
Kludgy fix for floating point drift causing problems like range(1.0,1.5,0.1) == array(1.0,1.1,1.2,1.3,1.4); |
#
4b343a05 |
| 01-Apr-2003 |
Rasmus Lerdorf |
MFB |
#
3db5278d |
| 27-Mar-2003 |
Ilia Alshanetsky |
CS |
Revision tags: php-4.3.2RC1 |
|
#
8c2dbd5f |
| 22-Feb-2003 |
Andrey Hristov |
additional speedup for array_shift(). No need to rehash if the removed element's key is not scalar and elements with scalar keys are already well numbered (sequentially from 0) for some reaso
additional speedup for array_shift(). No need to rehash if the removed element's key is not scalar and elements with scalar keys are already well numbered (sequentially from 0) for some reason. This is the case if the leading elements have no scalar indexes.
show more ...
|
#
94040a28 |
| 22-Feb-2003 |
Andrey Hristov |
rehash only in case something is changed. #lowers the execution time in half on my machine on array with 1000 elements #with nonscalar keys. Maybe it can be optimized further. |
Revision tags: php-4.3.1 |
|
#
20f9b6d0 |
| 06-Feb-2003 |
foobar |
- Fixed bug #22088 (array_shift() leaves next index to be +1 too much) |
#
f12a6b76 |
| 05-Feb-2003 |
Ilia Alshanetsky |
Added array_walk_recursive() function that can apply array_walk recursively to an array. |
#
07a97290 |
| 03-Feb-2003 |
foobar |
- Fixed bug: #21998 (array_pop() did not reset the current array position) # This behaves now same as in PHP 4.2.3 |
Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix |
|
#
38ad0e91 |
| 24-Jan-2003 |
Ilia Alshanetsky |
zend_error -> php_error_docref. |
#
8a9e09a4 |
| 21-Jan-2003 |
Ilia Alshanetsky |
ARG_COUNT(ht) -> ZEND_NUM_ARGS(). |
#
1cdc9566 |
| 13-Jan-2003 |
Andrey Hristov |
added array_combine(). Creates an array by using the elements of the first parameter as keys and the elements of the second as correspoding keys. Error is thrown in case the arrays has di
added array_combine(). Creates an array by using the elements of the first parameter as keys and the elements of the second as correspoding keys. Error is thrown in case the arrays has different number of elements. Number of elements 0 is not valid for both parameters.
show more ...
|
#
f962ba6a |
| 03-Jan-2003 |
Moriyoshi Koizumi |
Fixed small leaks in array_map() in case the first parameter is NULL like array_map(NULL, array(...)); |
#
b506f5c8 |
| 31-Dec-2002 |
Sebastian Bergmann |
Bump year. |
Revision tags: php-4.3.0 |
|
#
fbcee73c |
| 25-Dec-2002 |
Ilia Alshanetsky |
Make range operate on the copies of the parameters rather then modify the actual parameters. |
Revision tags: php-4.3.0RC4 |
|
#
3a4bf3f9 |
| 20-Dec-2002 |
Ilia Alshanetsky |
When low & high are the same return an array containing the low value. Added support for float values and handling of numeric values being passed as strings. Added a test case for range(). |
Revision tags: RELEASE_1_0b3, php-4.3.0RC3 |
|
#
4974f268 |
| 09-Dec-2002 |
Moriyoshi Koizumi |
@- Let array_search() accept objects as a needle under ZendEngine2. (Moriyoshi) |
#
ed7c3bfe |
| 06-Dec-2002 |
Ilia Alshanetsky |
Fixed bug #20865, array_key_exists() could not locate NULL keys. |
#
c6680551 |
| 05-Dec-2002 |
Ilia Alshanetsky |
Remove pointless checks for array_init() return values. |
#
7bf4090e |
| 04-Dec-2002 |
Moriyoshi Koizumi |
Fixed segfaults of array_walk() when keys are passed to cb by reference. Fixed bug #12776. |
#
242ddba3 |
| 03-Dec-2002 |
Moriyoshi Koizumi |
Fixed leaks in array_walk() |
Revision tags: php-4.3.0RC2 |
|
#
98dace88 |
| 26-Nov-2002 |
Moriyoshi Koizumi |
Improved the error reporting portion of array_walk() as suggested by Markus |
#
3fd513f3 |
| 26-Nov-2002 |
Moriyoshi Koizumi |
Prevent too many error reports from being displayed |