OK, that's going to be a strange post, but...
1) Is there an exhaustive list of language constructs somewhere?
Is it part of any coding conventions to enforce a space between
the name of a language construct and the parenthesis announcing its parameter list?
E.g.,
include_once ('my.inc');
vs.
include_once('my.inc');
I am interested in best practices and the most widely accepted coding conventions.
Such convention would allow to easily distinguish language constructs from functions.
Can anyone point me to some references?
Did Zend publish anything official in that regard?