[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array range.phpt

2002-12-28 Thread Moriyoshi Koizumi
Added support for float values and handling of numeric values being passed as strings. Is this change likely to cause backwards compatibility issues? Moriyoshi -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Jon Parise
On Sat, Nov 23, 2002 at 08:47:45PM +0900, Moriyoshi Koizumi wrote: Just a notice: The third optional parameter is not suggested in the branch. Therefore I won't try to merge this patch to PHP_4_3, but due to this decision the behaviour of the function slightly differs one another in the

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Moriyoshi Koizumi
Hmm, since nothing is mentioned about the rule of character sequence generation in the manual, I don't think it's so necessary. IMO this new feature introduced in 4.1.0 should not be included in the first place because it broke backwards compatibilities pretty much as one of the user

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Jon Parise
On Sun, Nov 24, 2002 at 03:28:45AM +0900, Moriyoshi Koizumi wrote: Hmm, since nothing is mentioned about the rule of character sequence generation in the manual, I don't think it's so necessary. IMO this new feature introduced in 4.1.0 should not be included in the first place because it

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Moriyoshi Koizumi
I think the step option which you added is quite useful in every case. Why didn't you merge into the branch? there seems no BC problem about it. Moriyoshi On Sun, Nov 24, 2002 at 03:28:45AM +0900, Moriyoshi Koizumi wrote: Hmm, since nothing is mentioned about the rule of character sequence

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Derick Rethans
On Sun, 24 Nov 2002, Moriyoshi Koizumi wrote: I think the step option which you added is quite useful in every case. Why didn't you merge into the branch? there seems no BC problem about it. It's a new kind of functionality. And IMO were too far in the Release Process to merge it now. Derick

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-11-23 Thread Jon Parise
On Sun, Nov 24, 2002 at 03:42:02AM +0900, Moriyoshi Koizumi wrote: I think the step option which you added is quite useful in every case. Why didn't you merge into the branch? there seems no BC problem about it. I may merge it after PHP 4.3.0 is officially released, but I don't want to taint

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-10-10 Thread Zeev Suraski
My guesstimate - lots of people use it. So, I'm -1 on breaking BC... Zeev At 23:05 09/10/2002, Andi Gutmans wrote: I haven't :) Anyway, I understand your reasoning. I just felt that lately too many things have been breaking around us. I'm cc'ing php-dev as that is a bigger forum. Have any of

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-10-10 Thread Andi Gutmans
From the feedback I think it's best to revert this. Please do so. Thanks, Andi At 11:05 PM 10/9/2002 +0200, Andi Gutmans wrote: At 11:03 PM 10/9/2002 +0200, Sterling Hughes wrote: On Wed, 2002-10-09 at 22:56, Derick Rethans wrote: On Wed, 9 Oct 2002, Andi Gutmans wrote: At 10:35 PM

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-10-09 Thread Andi Gutmans
At 10:47 PM 10/9/2002 +0200, Sterling Hughes wrote: On Wed, 2002-10-09 at 22:45, Derick Rethans wrote: On 9 Oct 2002, Sterling Hughes wrote: On Wed, 2002-10-09 at 22:21, Thies C. Arntzen wrote: On Wed, Oct 09, 2002 at 06:29:45PM -, Sterling Hughes wrote: sterling

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c

2002-10-09 Thread Andi Gutmans
At 11:03 PM 10/9/2002 +0200, Sterling Hughes wrote: On Wed, 2002-10-09 at 22:56, Derick Rethans wrote: On Wed, 9 Oct 2002, Andi Gutmans wrote: At 10:35 PM 10/9/2002 +0200, Sterling Hughes wrote: On Wed, 2002-10-09 at 22:21, Thies C. Arntzen wrote: On Wed, Oct 09, 2002 at 06:29:45PM

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c basic_functions.c php_array.h

2002-09-11 Thread Jon Parise
On Wed, Sep 11, 2002 at 06:13:48PM -, Andrey Hristov wrote: andreyWed Sep 11 14:13:48 2002 EDT Modified files: /php4/ext/standardarray.c basic_functions.c php_array.h Log: New function added : array_diff_assoc() . Like array_diff() but

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array count_recursive.phpt

2002-01-09 Thread Yasuo Ohgaki
Sterling Hughes wrote: Hmm sounds a bit weird to me but if it's really useful than it's OK :) I have to agree, and its really not that hard to implement in user space:: function count_recursive($ar) { $total = 0; foreach ($ar as $e = $val) { if

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array count_recursive.phpt

2002-01-09 Thread Sterling Hughes
Sterling Hughes wrote: Hmm sounds a bit weird to me but if it's really useful than it's OK :) I have to agree, and its really not that hard to implement in user space:: function count_recursive($ar) { $total = 0; foreach ($ar as $e = $val) {

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array count_recursive.phpt

2002-01-09 Thread Yasuo Ohgaki
Sterling Hughes wrote: Sterling Hughes wrote: Hmm sounds a bit weird to me but if it's really useful than it's OK :) I have to agree, and its really not that hard to implement in user space:: function count_recursive($ar) { $total = 0; foreach ($ar as $e = $val) {

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard array.c php_rand.h rand.crand_mt.c rand_sys.c

2001-09-03 Thread Sebastian Bergmann
Daniel Beulshausen wrote: Log: fix zts+win32 build Now only this warning rand.c D:\home\php\php4\ext\standard\rand.c(74) : warning C4013: '_getpid' undefined; Guess: extern with return type int persists. -- Sebastian Bergmann Measure Traffic Usability