码迷,mamicode.com
首页 > 其他好文 > 详细

【小记】动态调用 类静态属性 常量

时间:2021-03-05 13:15:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:静态   rank   pre   ade   static   public   lag   stat   const   

class Foo {
    public static $flag_status = array( ‘foo‘, ‘bar‘ );

    Const OT_UPGRADE_1 = 1;
    Const OT_UPGRADE_2 = 2;
}

// 静态属性
$name_attr = ‘flag_status‘;
print_r(Foo::$$name_attr);


// 类动态常量
$rank = 1;
constant(Foo::class . ‘::OT_UPGRADE_‘ . $rank);

  

 

【小记】动态调用 类静态属性 常量

标签:静态   rank   pre   ade   static   public   lag   stat   const   

原文地址:https://www.cnblogs.com/lanse1993/p/14483126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!