如何在PHP中获取当前类而不是其父类的所有属性 [英] How to get all properties of the current class and NOT its parent(s) in PHP

查看:310
本文介绍了如何在PHP中获取当前类而不是其父类的所有属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取当前类的所有属性的数组,不包括继承的属性?

How do I get an array of all the properties of the current class, excluding inherited properties?

推荐答案

在PHP> = 5.3

In PHP >= 5.3

$ref = new ReflectionClass('DerivedClass');  
$ownProps = array_filter($ref->getProperties(), function($property) {
    return $property->class == 'DerivedClass'; 
});  

print_r($ownProps);

这篇关于如何在PHP中获取当前类而不是其父类的所有属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆