覆盖PHP中的魔术方法

时间:2015-05-04 15:05:43

标签: php override method-overriding

我已经用谷歌搜索了一个小时,发现了这个问题的变体,但没有找到问题的确切版本,除了一篇没有用的博客文章。

我想覆盖PHP扩展类中的方法,并调用新扩展类体内的父方法。问题是父级没有这样的方法,但实现__call()来公开该功能。

例如:

class B extends A {
  public function setParentId($new_id) 
  {
     parent::setParentId($new_id);
     $this->buildParentTreeCache();
     return $this;
  }

这不起作用。事实上,我得到了令人讨厌的Apache内部错误或配置错误。

我发现这个解决方案既不起作用: (除非我添加了array($new_id)部分。该示例使用NULL。)

class B extends A {
  public function setParentId($new_id) 
  {
     parent::__call('setParentId', array($new_id));
     $this->buildParentTreeCache();
     return $this;
  }

这个应该有用!我不知道自己做错了什么。

正确的方法是什么?

编辑:

我不确定我的配置有什么问题,但我收到的错误信息只是:

[Mon May 04 12:13:12.778136 2015] [fastcgi:error] [pid 30512] (104)Connection reset by peer: [client 127.0.0.1:54854] FastCGI: comm with server "/var/www/fastcgi/php5.fastcgi" aborted: read failed, referer: http://admin.mysite/index.php/category/index
[Mon May 04 12:13:12.779620 2015] [fastcgi:error] [pid 30512] [client 127.0.0.1:54854] FastCGI: incomplete headers (0 bytes) received from server "/var/www/fastcgi/php5.fastcgi", referer: http://admin.mysite/index.php/category/index

编辑2:

基类(本例中为A类)是一个自动生成的文件,它也没有我试图调用的代码。

事实上,它是一个Doctrine 1模型" Base"类称为" BaseCategory"从sfDoctrineRecord扩展而来。

class Category extends BaseCategory // My class
class BaseCategory extends sfDoctrineRecord // Autogenerated, prone to be verwritten by the generator

类sfDoctrineRecord的代码在这里:

http://trac.symfony-project.org/browser/branches/1.2/lib/plugins/sfDoctrinePlugin/lib/record/sfDoctrineRecord.class.php

1 个答案:

答案 0 :(得分:1)

正如moonwave99建议的那样,你应该看看 here

  

使用时,请使用未声明的方法使用 parent :: method   __call因为在这种情况下字符串方法将是小写

<?php
  class A {
      function __call( $method, $args ) {
        echo get_class( $this )  . ' ' . $method . "\n";
      }
  }

  class B extends A {
      function getTest() {
          parent::getTest();
      }
  }

$a = new A();
$a->getTest();
$b = new B();
$b->getTest();

?>

output:

A getTest
B gettest

这可能是造成错误的原因,因此当您执行parent::setParentId($new_id);时,可能会将其解释为:

  

父::将 P 的arent的 I d($ NEW_ID);

尝试在A类中使用小写