[PHP-DEV] [PATCH] array_count_values bug: mishandling of numbers with leading whitespace

2006-08-13 Thread Matt W
Hi there, I didn't know whether to make an official bug report or send to the list -- so I'm trying this first. :-) var_dump(array_count_values(array(' 001', 1, ' 1 ', '1'))); Expected result (and what PHP 4 gives): array(3) { [" 001"]=> int(1) [1]=> int(2) [" 1 "]=> int(1) }

Re: [PHP-DEV] [PATCH] array_count_values bug: mishandling of numbers with leading whitespace

2006-08-13 Thread Pierre
Hello, On 8/13/06, Matt W <[EMAIL PROTECTED]> wrote: Hi there, I didn't know whether to make an official bug report or send to the list -- so I'm trying this first. :-) You already tried in the previous thread about is_numeric. var_dump(array_count_values(array(' 001', 1, ' 1 ', '1')));

Re: [PHP-DEV] [PATCH] array_count_values bug: mishandling of numbers with leading whitespace

2006-08-13 Thread Pierre
Hi, On 8/13/06, Matt W <[EMAIL PROTECTED]> wrote: Not reasonable or safe? Then why were the other bugs fixed instead of being marked "Bogus" if array_count_values() was *supposed* to behave differently in 5? Safe as it will not break working php5 code. Changing this behavior now can break ma

Re: [PHP-DEV] [PATCH] array_count_values bug: mishandling of numbers with leading whitespace

2006-08-13 Thread Matt W
Hi Pierre, - Original Message - From: "Pierre" Sent: Sunday, August 13, 2006 > Hello, > > On 8/13/06, Matt W <[EMAIL PROTECTED]> wrote: > > Hi there, > > > > I didn't know whether to make an official bug report or send to the list -- > > so I'm trying this first. :-) > > You already trie

[PHP-DEV] PHP 4.4.4RC1 released

2006-08-13 Thread Derick Rethans
Hello! PHP 4.4.4RC1 has been packaged and can be found here: - http://downloads.php.net/derick/php-4.4.4RC1.tar.bz2 MD5 (php-4.4.4RC1.tar.bz2) = bb89d67c3a011229adea6c31aae6751b - http://downloads.php.net/derick/php-4.4.4RC1.tar.gz MD5 (php-4.4.4RC1.tar.gz) = 13d41fcc56bb5e164c488575a0b96e59

[PHP-DEV] config.w32 quirk

2006-08-13 Thread runner60
I had this in a config.w32 file: ARG_ENABLE("winbinder", "winbinder support", "no"); //ARG_WITH("winbinder", "winbinder support", "no"); line 2 is not treated as comment and after buildconf cscript configure.js --help both --enable-winbinder and --with-winbinder were listed as availabe options.