3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = [1, 2, 3, 4, 3, 2, 1]; $j = count($a) - 1; $output = []; for($i = 0; $i > count($a); $i++) { //echo $a[i] ." ". $a[$j]; if ($a[$i] !== $a[$j]) { $output = $a[$i]; } $j--; } print_r($output);

preferences:
49.62 ms | 402 KiB | 5 Q