Declare a constant in the class

In PHP method we usually declare constants are:

define (to keep up with the constant name, value)

But PHP class that is not easy to use; const need to use this method to declare:

const constant name = value;

 

Guess you like

Origin www.cnblogs.com/xiaojiji/p/11233224.html