PHP - Functions
What is the output of this PHP code?
function add($x, $y = 5) {
return $x + $y;
}
echo add(10);function add($x, $y = 5) {
return $x + $y;
}
echo add(10);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions