日期:2014-05-17  浏览次数:20526 次

php中const与define的区别

(1)define不能定义在类中,而const必须定义在类中,并且const必须通过类名::变量名来进行访问;

(2)两者都是不能进行重新赋值