5

我有一个像

class parent{
   public $foo;
}

class child extends parent{
   public $lol;

    public function getFields()
    {
        return array_keys(get_class_vars(__CLASS__));
    }
}

我得到一个包含子属性的数组...

array('foo','lol'); 

有没有一个简单的解决方案来只从子类中获取属性?

4

2 回答 2

6

如链接中发布的如何遍历当前类属性(不是从父类或抽象类继承)?

public function iterate()
{
  $refclass = new ReflectionClass($this);
  foreach ($refclass->getProperties() as $property)
  {
    $name = $property->name;
    if ($property->class == $refclass->name)
      echo "{$property->name} => {$this->$name}\n";
  }
}

这是投票和收藏的绝佳解决方案!你的!!!谁曾与此相关联!

于 2013-06-20T14:04:15.087 回答
3

试试这种方法(可能包含伪 PHP 代码 :))

class parent{
   public $foo;

   public function getParentFields(){
        return array_keys(get_class_vars(__CLASS__));
   }
}

class child extends parent{
   public $lol;

    public function getFields()
    {   
        $parentFields = parent::getParentFields();
        $myfields = array_keys(get_class_vars(__CLASS__));

        // just subtract parentFields from MyFields and you get the properties only exists on child

        return the diff
    }
}

使用 parent::getParentFields() 函数来确定哪些字段是父字段的想法。

于 2013-06-20T13:53:09.400 回答