Source Code:
(back to article)
<?php function add($a, $b) { return $a + $b; } echo add(5, 10); ?>
Result:
Report an issue