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