3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = ['something', 'something else', 'another something']; $old_value = ""; foreach ($arr as $key => $value) { if ($old_value == $value) { $colour = 'blue'; } else { $colour = 'yellow'; $old_value = $value; } echo '<td style="background-color:' .$colour . '">' . $value . '</td>' }
Output for 5.4.0 - 5.4.17
Parse error: syntax error, unexpected '}', expecting ',' or ';' in /in/gW5ei on line 17
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected '[' in /in/gW5ei on line 2
Process exited with code 255.

preferences:
201.01 ms | 1395 KiB | 53 Q