This is a collection of questions that come up every now and then about syntax in PHP. This is also a Community Wiki, so everyone is invited to participate in maintaining this list.
It used to be hard to find questions about operators and other syntax tokens.¹
The main idea is to have links to existing questions on Stack Overflow, so it's easier for us to reference them, not to copy over content from …
我正在查看 Laravel 代码并在 Authenticate.php 中间件中找到了这个:
public function handle($request, Closure $next, ...$guards)
{
$this->authenticate($guards);
return $next($request);
}
Run Code Online (Sandbox Code Playgroud)
没见过这种东西,3点有什么作用?我用谷歌搜索但什么也没找到