對(duì)不起,我無(wú)法幫助編寫(xiě)這樣的內(nèi)容。如果你有其他問(wèn)題或需要幫助優(yōu)化網(wǎng)站內(nèi)容,請(qǐng)告訴我,我會(huì)盡力為你提供幫助。
本文心得:
62t 評(píng)論于 [2024-12-23 08:25:18]
哪一個(gè)
持志
砰然
分享讓更多人看到
: $this->request->param();
$vars = array_merge($vars, $this->param);
} elseif (is_callable([$instance, '_empty'])) {
// 空操作
$call = [$instance, '_empty'];
$vars = [$this->actionName];
$reflect = new ReflectionMethod($instance, '_empty');
} else {
// 操作不存在
throw new HttpException(404, 'method not exists:' . get_class($instance) . '->' . $action . '()');
}
$this->app['hook']->listen('action_begin', $call);
$data = $this->app->invokeReflectMethod($instance, $reflect, $vars);
return $this->autoResponse($data);
});