3v4l.org

run code in 300+ PHP versions simultaneously
<?php $bool = true; var_dump($bool['test']); $int = 1; var_dump($int['test']); $null = null; var_dump($null['test']);
Output for 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Warning: Trying to access array offset on true in /in/WCkTk on line 5 NULL Warning: Trying to access array offset on int in /in/WCkTk on line 9 NULL Warning: Trying to access array offset on null in /in/WCkTk on line 13 NULL
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30
Warning: Trying to access array offset on value of type bool in /in/WCkTk on line 5 NULL Warning: Trying to access array offset on value of type int in /in/WCkTk on line 9 NULL Warning: Trying to access array offset on value of type null in /in/WCkTk on line 13 NULL
Output for 7.4.0 - 7.4.33
Notice: Trying to access array offset on value of type bool in /in/WCkTk on line 5 NULL Notice: Trying to access array offset on value of type int in /in/WCkTk on line 9 NULL Notice: Trying to access array offset on value of type null in /in/WCkTk on line 13 NULL
Output for 5.6.0 - 5.6.25, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
NULL NULL NULL

preferences:
114.86 ms | 1659 KiB | 4 Q