Skip to content

Instantly share code, notes, and snippets.

@mouyong
Last active June 24, 2018 20:53
Show Gist options
  • Select an option

  • Save mouyong/e40c705c4aa8dcea82cf1ee71bcae735 to your computer and use it in GitHub Desktop.

Select an option

Save mouyong/e40c705c4aa8dcea82cf1ee71bcae735 to your computer and use it in GitHub Desktop.
查看当前路由绑定中的参数名
// Illuminate\Routing\Controller
public function callAction($method, $parameters)
{
dd(array_reverse(head(debug_backtrace(0))['args'][1]));
return call_user_func_array([$this, $method], $parameters);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment