3v4l.org

run code in 300+ PHP versions simultaneously
<?php //array con temi istallati e abilitati $themes = array(); $themes[0] = 'Bartik'; $themes[1] = 'zen'; $themes[2] = 'omega'; $themes[3] = 'adaptivetheme'; //cambia tema se l'ora รจ pari o dispari $current_time = (Integer) date('Gi'); $current_day = (Integer) date('w'); // 0 domenica - 6 sabato if ($current_day == 1 || $current_day == 2 || $current_day == 3 || $current_day == 4 ) { return $themes[3]; } else { return $themes[0]; } else if ($current_day == 5 && $current_time>= 1800){ return $themes[2]; } else { return $themes[1]; } else if ($current_day == 6 || $current_day == 0) { return $themes[2]; } else { return $themes[1]; } print_r($themes);
Output for 5.4.0 - 5.4.31
Parse error: syntax error, unexpected 'else' (T_ELSE) in /in/N5hRn on line 21
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_ELSE in /in/N5hRn on line 21
Process exited with code 255.

preferences:
192.71 ms | 1394 KiB | 68 Q