[PHP-DEV] CVS Account Request: vasu

2006-08-11 Thread vasu yerra
develop additional functionality for php -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5.1.5RC1 Released

2006-08-11 Thread Edin Kadribasic
Windows build can be downloaded at: http://downloads.php.net/edink/php-5.1.5RC1-Win32.zip Edin Ilia Alshanetsky wrote: Fixed. The new packages are up and here are their md5 checksums bef8e899896058c823fa026d72ea9035 php-5.1.5RC1.tar.bz2 a52c7c9d5621d6b740b45b3b50656eee php-5.1.5RC1.tar.gz

RE: FW: [PHP-DEV] Long awaited line directive

2006-08-11 Thread Zeev Suraski
At 22:15 11/08/2006, Richard Lynch wrote: On Fri, August 11, 2006 4:30 am, Zeev Suraski wrote: > The solution I propose is to create internal functions that will set > 'virtual' filenames and line ranges, that will be saved in some sort > of a translation table, of real filename + line range to v

Re: [PHP-DEV] Re: Upload progress

2006-08-11 Thread Arpad Ray
Richard Quadling wrote: But even with ... always_populate_raw_post_dataOn I get ... Notice: Undefined variable: HTTP_RAW_POST_DATA (for $HTTP_RAW_POST_DATA) and Notice: Undefined index: HTTP_RAW_POST_DATA (for $_SERVER['HTTP_RAW_POST_DATA']). Assuming you CAN get the length, it may be th

RE: FW: [PHP-DEV] Long awaited line directive

2006-08-11 Thread Richard Lynch
On Fri, August 11, 2006 4:30 am, Zeev Suraski wrote: > The solution I propose is to create internal functions that will set > 'virtual' filenames and line ranges, that will be saved in some sort > of a translation table, of real filename + line range to virtual > filename + lineno. The error callb

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Pierre
Hi Matt, On 8/11/06, Matt W <[EMAIL PROTECTED]> wrote: Hello Pierre, Thanks for your reply. :-) - Original Message - From: "Pierre" Sent: Friday, August 11, 2006 > Hello, > > Note that I also answer your previous mail here :) > > On Fri, 11 Aug 2006 06:18:13 -0500 > [EMAIL PROTECTED]

Re: [PHP-DEV] PHP 5.1.5RC1 Released

2006-08-11 Thread Ilia Alshanetsky
Fixed. The new packages are up and here are their md5 checksums bef8e899896058c823fa026d72ea9035 php-5.1.5RC1.tar.bz2 a52c7c9d5621d6b740b45b3b50656eee php-5.1.5RC1.tar.gz It seems I forgot to use a CVS with a hacked up CVS/Repository, which means Zend/ needs to be tagged separately :/ Ili

Re: [PHP-DEV] Re: Upload progress

2006-08-11 Thread Unknown W. Brackets
Using PHP 5.1.x (I don't remember which exact version) I tested opening php://input (since I want to stream it anyway) the other day - and that did work. I think I may have had display_errors off on that box, though, so I may have missed this warning you mention. -[Unknown] Origina

[PHP-DEV] Re: Upload progress

2006-08-11 Thread Unknown W. Brackets
What about Transfer-Encoding, as mentioned in another post? I didn't think PHP provides that one. -[Unknown] Original Message I believe you could use $_SERVER/$_ENV['CONTENT_LENGTH'] in CGI, I don't know about the IIS ISAPI module though. Arpad -- PHP Internals - PHP Ru

[PHP-DEV] Re: [Simplistic End User View] Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Matt W
Hi Jochem, Leading whitespace is already allowed with PHP's is_numeric() function (and corresponding internal one), math operations, etc. Only when it precedes .123 or -.123 does the behavior change. :-) Matt - Original Message - From: "Jochem Maas" Sent: Friday, August 11, 2006 Pie

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Matt W
Hello Pierre, Thanks for your reply. :-) - Original Message - From: "Pierre" Sent: Friday, August 11, 2006 > Hello, > > Note that I also answer your previous mail here :) > > On Fri, 11 Aug 2006 06:18:13 -0500 > [EMAIL PROTECTED] ("Matt W") wrote: > > > Hello again, > > > > I discovered

[PHP-DEV] [Simplistic End User View] Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Jochem Maas
Pierre wrote: > Hello, > > Note that I also answer your previous mail here :) > > On Fri, 11 Aug 2006 06:18:13 -0500 > [EMAIL PROTECTED] ("Matt W") wrote: > >> Hello again, >> >> I discovered a couple more things is_numeric... is causing problems >> with (leading whitespace). I doubt any of the

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Pierre
Hello, Note that I also answer your previous mail here :) On Fri, 11 Aug 2006 06:18:13 -0500 [EMAIL PROTECTED] ("Matt W") wrote: > Hello again, > > I discovered a couple more things is_numeric... is causing problems > with (leading whitespace). I doubt any of the examples I've given > make sen

Re: [PHP-DEV] Re: Upload progress

2006-08-11 Thread Richard Quadling
On 11/08/06, Arpad Ray <[EMAIL PROTECTED]> wrote: Unknown W. Brackets wrote: > Fair enough. I was under the (now obviously wrong) impression that > setting post_max_size to 0 wouldn't let me get to the post data. Of course then $_POST isn't available, so if you want to handle normal POST data

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Pierre
Hello, Note that I also answer your previous mail here :) On Fri, 11 Aug 2006 06:18:13 -0500 [EMAIL PROTECTED] ("Matt W") wrote: > Hello again, > > I discovered a couple more things is_numeric... is causing problems > with (leading whitespace). I doubt any of the examples I've given > make sen

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Matt W
Hi Andrei, You seem to be the array-function-person ;-) so I'll ask you if the array_count_values() result in my previous message is what's intended? Seems to me leading whitespace should *not* be ignored. I didn't try it yet, but it seems zend_[u_]symtable_[find|update] should simply be used, in

Re: [PHP-DEV] is_numeric_string causes function inconsistency

2006-08-11 Thread Matt W
Hello again, I discovered a couple more things is_numeric... is causing problems with (leading whitespace). I doubt any of the examples I've given make sense to regular users who don't know what's happening behind the scenes. Add these to the "wrong" list: is_numeric(' .123') // bool(false) ' .

[PHP-DEV] Re: Upload progress

2006-08-11 Thread Arpad Ray
Unknown W. Brackets wrote: Fair enough. I was under the (now obviously wrong) impression that setting post_max_size to 0 wouldn't let me get to the post data. Of course then $_POST isn't available, so if you want to handle normal POST data in the same request it also has to be manually pars

RE: FW: [PHP-DEV] Long awaited line directive

2006-08-11 Thread Zeev Suraski
I think we can divide the discussion to (a) whether or not we need this feature, and (b) everything else. Regarding (b), I agree completely with everything Stas said (no #xyz syntax, no code generation in the scanner, etc.). Regarding (a), we're likely to get the standard discussion of simpl

Re: [PHP-DEV] PHP 5.1.5RC1 Released

2006-08-11 Thread Derick Rethans
On Fri, 11 Aug 2006, Phil Driscoll wrote: > There's no 'configure' (at least in the .gz version). Nor a Zend directory or something :) regards, Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 5.1.5RC1 Released

2006-08-11 Thread Phil Driscoll
Ilia There's no 'configure' (at least in the .gz version). Cheers -- Phil Driscoll -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php