<?php class A { public int|null $x = 1; } $a = [['x' => null], ['x' => new A()]]; foreach ($a as $b) { var_dump($b['x']?->y ?? 0); }
You have javascript disabled. You will not be able to edit any code.