<?php $arr = [ 'deep' => [ 'bar' => 'foo', ], ]; foreach($arr['deep'] ?? [] as &$value) { $value = 'x'; } var_dump('x' === $arr['deep']['bar']); foreach($arr['deep'] as &$value) { $value = 'x'; } var_dump('x' === $arr['deep']['bar']);
You have javascript disabled. You will not be able to edit any code.