--TEST-- Nullsafe operator - method and property access --FILE-- prop?->data); $user->prop = new stdClass(); $user->prop->data = 'hello'; var_dump($user?->prop?->data); } ?> --EXPECT-- NULL string(5) "hello"