PHP - Functions
Consider the following PHP code:
What will be the output and why?
function multiply($x, $y = 2) {
return $x * $y;
}
echo multiply(5);What will be the output and why?
