开发者

Checking if an overridden parent method exists before calling it

How would I go about ensuring that the ov开发者_C百科erridden parent method exists before I call it?

I've tried this:

public function func() {
    if (function_exists('parent::func')) {
        return parent::func();
    }
}

However the function_exists never evaluates to true.


public function func() 
{
    if (is_callable('parent::func')) {
        parent::func();
    }
}

I use this for calling parent constructor if exists, works fine.

I also use the following as a generic version:

public static function callParentMethod(
    $object,
    $class,
    $methodName,
    array $args = []
) {
    $parentClass = get_parent_class($class);
    while ($parentClass) {
        if (method_exists($parentClass, $methodName)) {
            $parentMethod = new \ReflectionMethod($parentClass, $methodName);
            return $parentMethod->invokeArgs($object, $args);
        }
        $parentClass = get_parent_class($parentClass);
    }
}

use it like this:

callParentMethod($this, __CLASS__, __FUNCTION__, func_get_args());


The way to do that, is:

if (method_exists(get_parent_class($this), 'func')) {
    // method exist
} else {
   // doesn't
}

http://php.net/manual/en/function.method-exists.php
http://php.net/manual/en/function.get-parent-class.php


<?php
class super {
    public function m() {}
}

class sub extends super {
     public function m() {
        $rc = new ReflectionClass(__CLASS__);
        $namepc = $rc->getParentClass()->name;
        return method_exists($namepc, __FUNCTION__);
    }
}

$s = new sub;
var_dump($s->m());

gives bool(true). Not sure if this would work if the method was defined in a superclass of super, but it would be a matter of introducing a simple loop.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜