[PHP-DEV] CVS Account Request: rquadling

2006-11-23 Thread Richard Quadling
Documenting the undocumented. Slowly and carefully. With examples. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PHP 5.2.0: "Hooks for tracking file upload progress were introduced."

2006-11-23 Thread Stickman
Hi I originally posted this to the general list but received no response, so I thought I might have more luck here. Apologies in advance if this is not the appropriate place for this question. The PHP 5.2.0 release announcement (http://www.php.net/releases/5_2_0.php) mentions, "Hooks for tracking

Re: [PHP-DEV] PHP 5.2.0: "Hooks for tracking file upload progress were introduced."

2006-11-23 Thread Rasmus Lerdorf
They are C-level hooks. The various storage mechanisms need to add support for them in order to expose them to userspace PHP. I added support in pecl/apc, for example. See: http://progphp.com/progress.php (pick some random file in the 200k size range) Source at: http://progphp.com/progress.

Re: [PHP-DEV] PHP 5.2.0: "Hooks for tracking file upload progress were introduced."

2006-11-23 Thread Stickman
Thanks for the reply. After submitting the question I came across this page http://blog.bitflux.ch/archive/2006/09/28/ (linked from the PHP docs of course -- must update my local help file!) with an early patch that makes use of these new hooks. However, I suspect we'll wait until something more '

[PHP-DEV] Re: [PHP-CVS] cvs: php-src(PHP_5_2) / run-tests.php

2006-11-23 Thread Michael Wallner
Marcus Boerger wrote: > Hello Michael, > > can you please also MFH to 4.4 - thanks Hi Marcus, PHP4's run-test doesn't support ENV sections. Regards, -- Michael -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Feature request

2006-11-23 Thread Mathias Bank
Richard Lynch schrieb: On Thu, November 9, 2006 9:13 pm, Andi Gutmans wrote: It looks a bit perl-ish indeed but I don't see much trouble in having that it people really need it... -0.3 :-) The thing is, I see this ending up with people starting to write unintelligible code: echo {$$(foo()[4

Re: [PHP-DEV] Feature request

2006-11-23 Thread Konstantin Käfer
-0.3 :-) The thing is, I see this ending up with people starting to write unintelligible code: echo {$$(foo()[4])}()[17][13]; However, I could image code like: echo parse_url($url)['host']; That saves me storing the return value in a new variable and then echoing it. Konstantin Käfer –

Re: [PHP-DEV] Feature request

2006-11-23 Thread Hannes Magnusson
On 11/23/06, Konstantin Käfer <[EMAIL PROTECTED]> wrote: > > -0.3 > > :-) > > The thing is, I see this ending up with people starting to write > unintelligible code: > echo {$$(foo()[4])}()[17][13]; However, I could image code like: echo parse_url($url)['host']; That saves me storing the retur