Re: [PHP-DEV] ZendEngine2 and $argc,$argv

2002-06-25 Thread Marcus Börger
Works now, THX marcus At 06:22 25.06.2002, Andi Gutmans wrote: >Can you try the latest CVS version? It should be fixed there. >Let me know... >Thanks, >Andi > >At 11:04 PM 6/24/2002 +0200, Marcus Boerger wrote: >>Since i use ZendEngine2 i cannot use global $argc,$argv. >> >>Example: >> >>functio

Re: [PHP-DEV] ZendEngine2 and $argc,$argv

2002-06-24 Thread Andi Gutmans
Can you try the latest CVS version? It should be fixed there. Let me know... Thanks, Andi At 11:04 PM 6/24/2002 +0200, Marcus Boerger wrote: >Since i use ZendEngine2 i cannot use global $argc,$argv. > >Example: > >function somefunction() { > global $argc, $argv; >} > >worked before ZE2, P

[PHP-DEV] ZendEngine2 and $argc,$argv

2002-06-24 Thread Marcus Boerger
Since i use ZendEngine2 i cannot use global $argc,$argv. Example: function somefunction() { global $argc, $argv; } worked before ZE2, PHP-3.0-dev now i get: Fatal error - Can't assign by reference non-referencable value! function somefunction() { $argc = $GLOBALS['argc'];