optional
函数接收任意参数并允许你访问对象上的属性或调用其方法。如果给定的对象为空,属性或方法调用返回 null
return optional($user->address)->street;
optional
函数还可以接收一个闭包作为第二个参数,闭包会在第一个参数值不为空的情况下调用:
return optional(User::find($id), function ($user) { return new DummyUser; });
https://laravelacademy.org/post/9568.html
原文地址:https://www.cnblogs.com/cxscode/p/10346532.html
时间: 2024-11-08 22:32:48