Some PHP functions, like echo , do not need you to use brackets when calling them. Is this true?
No, because echo is a language construct and not a function. All PHP functions require you to use brackets when calling them.
Correct:
No, because echo is a language construct and not a function. All PHP functions require you to use brackets when calling them.
Explanation
I disagree because echo is a language construct and not a function.
All PHP functions require you to use brackets when calling them.