3v4l.org

run code in 300+ PHP versions simultaneously
<?php function a() { //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]; } if ($current_day == 5 && $current_time>= 1800){ return $themes[2]; } else { return $themes[1]; } if ($current_day == 6 || $current_day == 0) { return $themes[2]; } else { return $themes[1]; } } print_r(a());
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
adaptivetheme

preferences:
287.41 ms | 406 KiB | 459 Q