Q. What is the correct way to define a function in PHP?
β
Correct Answer: (B)
function myFunc()
Explanation: Functions are defined using the 'function' keyword.