Operator Null Safe di PHP

The syntax is similar to the property/method access operator (->), and following the nullable type pattern, the null-safe operator is ?->.

$foo?->bar?->baz;
Null safe operator silently returns null if the expression to the left side evaluates to null.
shafeeque