php中const与define的使用区别
1.const:类成员变量定义,一旦定义且不能改变其值.
define:定义全局常量,在任何地方都可以访问.
2.define:不能在类中定义,而const可以.
3.const:不能在条件语句中定义常量.
4.const:采用一个普通的常量名称,define可以采用表达式作为名称.
5.const:只能接受静态的标量,而define可以采用任何表达式.
6.const:大小写敏感.
1.const:类成员变量定义,一旦定义且不能改变其值.
define:定义全局常量,在任何地方都可以访问.
2.define:不能在类中定义,而const可以.
3.const:不能在条件语句中定义常量.
4.const:采用一个普通的常量名称,define可以采用表达式作为名称.
5.const:只能接受静态的标量,而define可以采用任何表达式.
6.const:大小写敏感.