Ver originalfunction Inter($a,$b){ $a = $a + $b;$b = $a - $b;$a = $a - $b; return $a.",".$b; } echo Inter(4,5);