3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(-1); // show all possible errors $obj = new stdclass(); $arr = array(); var_dump($arr['foo']); // Notice: Undefined index var_dump($arr[$obj]); // Warning: Illegal offset type $arr = null; var_dump($arr['foo']); // No error var_dump($arr[$obj]); // No error $arr = null; $arr['i'] = $arr['i'] + 1; // No error $arr = null; $arr['i']++; // Notice: Undefined index
Output for 8.3.0 - 8.3.7
Warning: Undefined array key "foo" in /in/69tSS on line 8 NULL Fatal error: Uncaught TypeError: Cannot access offset of type stdClass on array in /in/69tSS:9 Stack trace: #0 {main} thrown in /in/69tSS on line 9
Process exited with code 255.
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Warning: Undefined array key "foo" in /in/69tSS on line 8 NULL Fatal error: Uncaught TypeError: Illegal offset type in /in/69tSS:9 Stack trace: #0 {main} thrown in /in/69tSS on line 9
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Notice: Undefined index: foo in /in/69tSS on line 8 NULL Warning: Illegal offset type in /in/69tSS on line 9 NULL Notice: Trying to access array offset on value of type null in /in/69tSS on line 12 NULL Notice: Trying to access array offset on value of type null in /in/69tSS on line 13 NULL Notice: Trying to access array offset on value of type null in /in/69tSS on line 16 Notice: Undefined index: i in /in/69tSS on line 19
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Notice: Undefined index: foo in /in/69tSS on line 8 NULL Warning: Illegal offset type in /in/69tSS on line 9 NULL NULL NULL Notice: Undefined index: i in /in/69tSS on line 19
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.1 - 5.1.6, 5.2.0 - 5.2.17
Notice: Undefined index: foo in /in/69tSS on line 8 NULL Warning: Illegal offset type in /in/69tSS on line 9 NULL NULL NULL Notice: Undefined index: i in /in/69tSS on line 19
Output for 5.1.0
Fatal error: fatal flex scanner internal error--end of buffer missed in /in/69tSS on line 19
Process exited with code 255.

preferences:
256.72 ms | 401 KiB | 461 Q