/** * [add description] * * @param [type] $a [description] * @param [type] $b [description] * @return [type] $c [description] */ function add($a, $b) { $c = $a + $b; return $c; } # outputs : 3 echo add(1, 2);
Hello World!