Q. Which is the correct syntax of defining a default argument value in PHP?
β
Correct Answer: (C)
function function_name(type $argument_name = value) { /* function body*/ }
You must be Logged in to update hint/solution