這篇文章主要介紹php實例分析了php中類別常數的概念,有興趣的朋友參考下,希望對大家有幫助。
本文實例講述了php類別常數用法,具體如下:
<?php /** * PHP类常量 * * 类常量属于类自身,不属于对象实例,不能通过对象实例访问 * 不能用public,protected,private,static修饰 * 子类可以重写父类中的常量,可以通过(parent::)来调用父类中的常量 * 自PHP5.3.0起,可以用一个变量来动态调用类。但该变量的值不能为关键字(如self,parent或static)。 */ class Foo { // 常量值只能是标量,string,bool,integer,float,null,可以用nowdoc结构来初始化常量 const BAR = 'bar'; public static function getConstantValue() { // 在类的内部可以用self或类名来访问自身的常量,外部需要用类名 return self::BAR; } public function getConstant() { return self::BAR; } } $foo = 'Foo'; echo $foo::BAR, '<br />'; echo Foo::BAR, '<br />'; $obj = new Foo(); echo $obj->getConstant(), '<br />'; echo $obj->getConstantValue(), '<br />'; echo Foo::getConstantValue(); // 以上均输出bar class Bar extends Foo { const BAR = 'foo'; // 重写父类常量 public static function getMyConstant() { return self::BAR; } public static function getParentConstant() { return parent::BAR; } } echo Bar::getMyConstant(); // foo echo Bar::getParentConstant(); // bar
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
#以上是php實例分析了php中類別常數的概念的詳細內容。更多資訊請關注PHP中文網其他相關文章!