php – 获取类静态成员变量的数组
发布时间:2020-12-13 13:30:04 所属栏目:PHP教程 来源:网络整理
导读:示例类: class Example{ public static $ONE = [1,'one']; public static $TWO = [2,'two']; public static $THREE = [3,'three']; public static function test(){ // manually created array $arr = [ self::$ONE,self::$TWO,self::$THREE ]; } } 有没有
示例类:
class Example{ public static $ONE = [1,'one']; public static $TWO = [2,'two']; public static $THREE = [3,'three']; public static function test(){ // manually created array $arr = [ self::$ONE,self::$TWO,self::$THREE ]; } } 有没有办法在PHP中获取类静态成员变量数组而不像示例中那样手动创建它?
就在这里:
使用Reflection和getStaticProperties()方法 class Example{ public static $ONE = [1,'three']; public static function test(){ $reflection = new ReflectionClass(get_class()); return $reflection->getStaticProperties(); } } var_dump(Example::test()); Demo (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |