Which one of the following is the right way of defining a function in PHP?
A
function { function body }
B
data type functionName(parameters) { function body }
C
functionName(parameters) { function body }
D
function fumctionName(parameters) { function body }
Correct Answer: function fumctionName(parameters) { function body }