It is possible to define constant values on a per-class basis remaining the same and unchangeable.
Constants differ from normal variables in that you don't use the $ symbol to declare or use them. Like static members, constant values cannot be accessed from an instance of the object (using $object::constant).
|
说明: const 常量 不用 $ 符号 const 不加关键字 private 修饰 //Like static members, 不能通过 对象访问。 只能通过class访问
例子 19-15. Defining and using a constant
|
本文介绍了PHP中如何定义和使用常量,强调了常量与变量的不同之处,如声明方式及访问方法,并通过示例代码展示了常量的正确用法。
224

被折叠的 条评论
为什么被折叠?



