3v4l.org

run code in 300+ PHP versions simultaneously
<?php $iets = true; $dit = 'dit'; $dat = 'dat'; $zus = true; $zo = 'zo'; $x = $iets ? $dit : $zus ? $dat : $zo; print($x);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.14, 8.4.1
Fatal error: Unparenthesized `a ? b : c ? d : e` is not supported. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in /in/ubrN4 on line 8
Process exited with code 255.
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in /in/ubrN4 on line 8 dat
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.26
dat

preferences:
51.6 ms | 408 KiB | 5 Q