3v4l.org

run code in 300+ PHP versions simultaneously
<?php $result = array(); $i = 0; $items = array( array( 'name' => 'Product Example 1', 'sku' => '3324', 'price'=> '3.25', 'avail'=> 'Y' ), array( 'name' => 'Product Example 2', 'sku' => '3327', 'price'=> '2.99', 'avail'=> 'N' ) ); foreach($items as $item){ $item[$i]['sku'] = $result['sku']; //unset($item['sku']); } return $result; ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: Undefined array key "sku" in /in/uk6HM on line 19 Warning: Undefined array key "sku" in /in/uk6HM on line 19
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.17 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
Notice: Undefined index: sku in /in/uk6HM on line 19 Notice: Undefined index: sku in /in/uk6HM on line 19
Output for 7.3.32 - 7.3.33

preferences:
185.88 ms | 401 KiB | 209 Q