Functions in PHP

Functions work just like you would expect in every other language.
 
function cube($num) {
    return $num * $num * $num;
}

echo(cube(6));