Heim >Backend-Entwicklung >PHP-Tutorial >call_user_func_array 调用不到父类的方法

call_user_func_array 调用不到父类的方法

WBOY
WBOYOriginal
2016-07-06 13:52:43930Durchsuche

asklogic extends baselogic
asklogic 有个属性 static::$model
是个askmodel对象
askmodel extends basemodel
但是static::$model调用不了 basemodel里的方法

还有。。使用这种方法在__call里调用的
$data = call_user_func_array([static::$model, $method], $arguments);

求解
语言php
框架tp

回复内容:

asklogic extends baselogic
asklogic 有个属性 static::$model
是个askmodel对象
askmodel extends basemodel
但是static::$model调用不了 basemodel里的方法

还有。。使用这种方法在__call里调用的
$data = call_user_func_array([static::$model, $method], $arguments);

求解
语言php
框架tp

谢邀
我很久木有用TP了 对TP不熟 我帮你邀请了我的一个朋友@白俊遥 他对TP很熟 希望他能解决你的问题

public static $model是你自己定义的吧?$model并没有赋值当然不能调用了,通常是这样写的。

<code>class A {
    protected static $model;
    public static function getModelInstance() {
        if (empty(static::$model)) static::$model = new YourClass();
        return static::$model;
    }
}
//call
echo A::getModelInstance()->method();</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn