Posted by Paul Lautman on 05/21/06 22:03
Here's something that I can't manage to find explicitly documented. In the following snippet: function outer() { global $a; function inner() { global $a; echo $a.'1<br>'; } $a = 's'; inner(); echo $a.'2<br>'; } outer(); ?> If either of the globals statements is removed, the variable is not accessable within inner.
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming