在Doctrine PHP Symfony中覆盖Doctrine_Record(sfDoctrineRecord)实例方法

前端之家收集整理的这篇文章主要介绍了在Doctrine PHP Symfony中覆盖Doctrine_Record(sfDoctrineRecord)实例方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的背景是在Propel中,所以我希望在Doctrine_Record(sfDoctrineRecord)中覆盖一个神奇的getter是一件简单的事情,但我得到一个Segfault或者覆盖方法被简单地忽略而不是支持超类.

https://gist.github.com/697008eaf4d7b606286a

class FaqCategory extends BaseFaqCategory
{

  public function __toString()
  {
    return $this->getCategory();
  }

  // doesn't work
  // override getDisplayName to fall back to category name if getDisplayName doesn't exist
  public function getDisplayName() {

    // also tried parent::getDisplayName() but got segfault(!)
    if(isset($this->display_name)) {
      $display_name = $this->display_name;
    } else {
      $display_name = $this->category;
    }

    return $display_name;

  }

}

在Doctrine_Record实例上扩展/覆盖方法的正确Doctrine方法是什么(通过sfDoctrineRecord扩展Doctrine_Record)?这必须是可行的……或者我应该查看模板文档?

谢谢,
布赖恩

尝试_get和_set方法.
原文链接:https://www.f2er.com/php/138643.html

猜你在找的PHP相关文章