3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [1, 2]; unset($a[1], $a[0]); $b = $a; if (mt_rand(0, 1)) { $a[] = 3; } $b[] = 4; var_dump($b);
Output for 7.2.2, 7.2.4, 7.2.6, 7.2.10, 7.2.13, 7.2.15 - 7.2.19, 7.2.24 - 7.2.25, 7.2.28, 7.3.0 - 7.3.4, 7.3.6 - 7.3.7, 7.3.10 - 7.3.15, 7.4.0 - 7.4.1, 7.4.3
array(1) { [0]=> int(4) }
Output for 7.2.0 - 7.2.1, 7.2.3, 7.2.5, 7.2.7 - 7.2.9, 7.2.11 - 7.2.12, 7.2.14, 7.2.20 - 7.2.23, 7.2.26 - 7.2.27, 7.3.5, 7.3.8 - 7.3.9, 7.4.2
array(1) { [2]=> int(4) }

preferences:
70.18 ms | 408 KiB | 5 Q