[PHP-DEV] PHP 5 Bug Summary Report

2005-01-31 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net Num Status Summary (483 total including feature requests) ===[*Compile Issues]== 31772 Open Net-SNMP 5.2.x ++ Workaround in PHP_SNMP Incorrectly Coded ==

[PHP-DEV] upload progress meter - new version v4.1 available for php 4.3.10 and 5.0.3

2005-01-31 Thread Doru Petrescu
Hi, Just wanted to let you all know that a new version is available to work with PHP 4.3.10 and 5.0.3 As you probably already know, the upload progress meter is: A way to track the progress of a file that is uploaded to the web server WHILE the file is uploaded, and with some scripts and HTML

[PHP-DEV] referencing Superglobals with variable variables inside functions

2005-01-31 Thread Michael Virnstein
Atm it isn't possible to use a construct like $var = ${'_GET'}; inside a function or method. Will this behaviour change in future versions of PHP? I think it is somehow odd and inconsistent to not be able to use the superglobals that way, while it is possible outside of functions and methods an

Re: [PHP-DEV] upload progress meter - new version v4.1 available for php 4.3.10 and 5.0.3

2005-01-31 Thread Doru Petrescu
ah ... I forgot to mention: http://pdoru.from.ro is the address to download the files. D. On Mon, 2005-01-31 at 17:46, Doru Petrescu wrote: > Hi, > > Just wanted to let you all know that a new version is available to work > with PHP 4.3.10 and 5.0.3 > > > As you probably already know, the

Re: [PHP-DEV] referencing Superglobals with variable variables inside functions

2005-01-31 Thread Jason Sweat
On Mon, 31 Jan 2005 19:27:31 +0100, Michael Virnstein <[EMAIL PROTECTED]> wrote: > Atm it isn't possible to use a construct like $var = ${'_GET'}; inside a > function or method. Will this behaviour change in future versions of > PHP? I think it is somehow odd and inconsistent to not be able to use

[PHP-DEV] Re: referencing Superglobals with variable variables inside functions

2005-01-31 Thread Sara Golemon
> Atm it isn't possible to use a construct like $var = ${'_GET'}; inside a > function or method. Will this behaviour change in future versions of > PHP? I think it is somehow odd and inconsistent to not be able to use > the superglobals that way, while it is possible outside of functions and > meth

[PHP-DEV] Re: referencing Superglobals with variable variables inside functions

2005-01-31 Thread Sara Golemon
> So in order for ZE to resolve the autoglobals correctly during runtime it > has to ask two questions for every *part* of every variable resolution: "Are > we checking against the active symbol table? Is the index we're looking for > in the autoglobal registry?" If so, replace active_symbol_tabl

Re: [PHP-DEV] Re: referencing Superglobals with variable variables inside functions

2005-01-31 Thread Xuefer Tinys
$_GET is solved at compile time, which is good, but this make other variables bad at execution time? how much does this patch slow execution down? it's one more hash lookup. affect speed of $var or $$var? or both? On Mon, 31 Jan 2005 14:24:41 -0800, Sara Golemon <[EMAIL PROTECTED]> wrote: > > So