Source Code:
(back to article)
<?php $x = 5; $y = 10; function add() { global $x, $y; $result = $x + $y; return $result; } echo add();
Result:
Report an issue