I was wondering if there is any nice way of writing functions in PHP so that they don\'t require ( ) around the parameters.
Example:
function sayThis
Simple answer, no.
echo is a language construct not a function, hence it doesn't need the parentheses.
echo