PHP中如何定义和使用常量
1.自定义常量 * 必须用函数define()定义 2 系统常量: FILE :php程序文件名 php定义和使用一个类常量php类常量 我们可以在类中定义常量。常量的值将始终保持不变。在定义和使用常量的时候不需要使用$符号。 常量的值必须是一个定值,不能是变量,类属性或其它操作(如函数调用)的结果。 Its also possible for interfaces to have constants. Look at the interface documentation for examples. 接口(interface)中也可以定义常量。请查看接口的文档获得更多示例。 PHP5.3.0之后,我们可以用一个变量来动态调用类。但该变量的值不能为关键字self,parent 或static。 定义和使用一个类常量 代码如下: class MyClass
{ const constant = ‘constant value'; function showConstant() { echo self::constant . “n”; } } echo MyClass::constant . “n”; $classname = “MyClass”; $class = new MyClass(); echo $class::constant.”n”; // PHP 5.3.0之后 Example #2 静态数据示例 代码如下: class foo { // PHP 5.3.0之后 const bar = <<<'EOT' bar EOT; } ?> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |