Guys,
The following code produces a syntax error because the name starts with a number:
define('2X', 'foo');
However, this code works fine:
define('_2X', 'foo');
I have searched the php doc and have not found any guidance on this issue. Is this a BUG?