Source Code:
(back to article)
<?php $x = "outside"; function test() { global $x; echo $x; } test();
Result:
Report an issue