RosettaCodeData/Task/Function-definition/PHP/function-definition.php

5 lines
52 B
PHP

function multiply( $a, $b )
{
return $a * $b;
}