Re: [PHP-DEV] $GLOBALS broken?
[email protected] (Shane Caraveo)
| Newsgroups | php.dev |
|---|---|
| Message-ID | <[email protected]> |
It's a patch to ze2 that was done over the weekend, there is a new ini
setting that if you turn it on will fix the problem, just cannot
remember what it was right now...
Shane
Sebastian Bergmann wrote:
> Notice: Undefined variable: GLOBALS in E:\test.php on line 7
>
> 1 <?php
> 2 function foo() {
> 3 $GLOBALS['foo'] = 'bar';
> 4 }
> 5
> 6 function bar() {
> 7 echo $GLOBALS['foo'];
> 8 }
> 9
> 10 foo();
> 11 bar();
> 12 ?>
>