php : 类常量

使用总结:

1.不能使用 define 来定义

2.通过 "类名::常量名" 来获取

/**
 * 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

 

 

------->>>>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值