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 ) { if(ismobile()) { return $themes[3]; } else { return $themes[0]; } } else if ($current_day == 5 && $current_time>= 1800){ if (ismobile()){ return $themes[2]; } else { return $themes[1]; } } else if ($current_day == 6 || $current_day == 0) { if (ismobile()){ return $themes[2]; } else { return $themes[1]; } } print_r($themes);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function ismobile() in /in/HoNsl:15 Stack trace: #0 {main} thrown in /in/HoNsl on line 15
Process exited with code 255.

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:
48.71 ms | 401 KiB | 8 Q