所有编程语言都有一个相似的变量命名规则 变量命名规则:变量名首字母必须为字母(a-z A-Z),下划线(_),或者美元符号($)开始,php编程中所有变量必须以$开始。(有些编译器已经支持中文变量名了)变量名只能是字母(a-z A-Z),数字(0-9),下划线(_)的组合,并且之间不能包含空格,数字不能放在变量名首位。变量名不能使用编程语言的保留字。拿c#来说1. 语言级保留字(含79个保留字): 在整个C#语言中都作为保留字使用。*语言级保留字(79)abstractasbaseboolbreakbytecasecatchcharcheckedclass const continue decimal default delegate do double else enum event explicit extern FALSE finally fixed float for foreach goto if implicit in in (generic modifier) int interface internal is lock long namespace new null object operator out out (generic modifier) override params private protected public readonly ref return sbyte sealed short sizeof stackalloc static string struct switch this throw TRUE try typeof uint ulong unchecked unsafe ushort using virtual void volatile while