Source Code:
(back to article)
<?php $x = 10; function modify_global() { global $x; $x = 20; } modify_global(); echo $x; // outputs 20
Result:
Report an issue