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 git.master, git.master_jit, rfc.property-hooks
adaptivetheme

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
28.46 ms | 401 KiB | 8 Q