时间:2021-07-01 10:21:17 帮助过:5人阅读
还有。。使用这种方法在__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并没有赋值当然不能调用了,通常是这样写的。
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();