laravel で使われている ?? の意味を教えてください May 17, 2018 下記のコードで使われている??はどういう意味か教えてください。 public function guard($name = null) { $name = $name ?: $this->getDefaultDriver(); return $this->guards[$name] ?? $this->guards[$name] = $this->resolve($name); }