我在运行类方法的地方有自定义代码:
$object = new UserClass();
$method = 'create';
$params = ['name' => 'John'];
$reflectionMethod = new \ReflectionMethod($object, $method);
if($reflectionMethod->isStatic()) {
return $object::$method($params);
} else {
return $object->$method($params);
}
我如何在不检查方法类型是否为静态的情况下运行类方法,如果可能的话用一行?
HUWWW