[PHP-DEV] PHP 4.0 Bug #4071: PHP crashes sometimes if there are multiple functions with "global" in a script From: c.schmidt-koester <email protected>
Date: 04/07/00

From: c.schmidt-koester <email protected>
Operating system: Win95b
PHP version: 4.0 Release Candidate 1
PHP Bug Type: Reproduceable crash
Bug description: PHP crashes sometimes if there are multiple functions with "global" in a script

function f1()
{
   global $var1, $var2, $var3, $var4, $var5, $var6;
   ...
}
 
function f2()
{
   global $var1, $var9, $var3, $var7, $var5, $var6;
   ...
}
 
function f3()
{
   global $var11, $var2, $var3, $var14, $var5, $var4;
  ...
}

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>