3v4l.org

run code in 300+ PHP versions simultaneously
<?php $current_day = date('N'); // Current day of the week as a number (1-7) $current_hour = date('H'); // Current hour in 24 hr format if($current_day < 6) { // Check if it's Monday - Friday if($current_hour > 6 && $current_hour < 9) { // time is between 6 and 9 AM $image = 'morning.jpg'; } elseif($current_hour > 15 && $current_hour < 17) { // time is between 3 and 5 pm $image = 'afternoon.jpg'; } elseif($current_hour > 17 && $current_hour < 21) { // time is between 5 and 9 pm $image = 'evening.jpg'; } else { // time is none of the above $image = 'unkown.jpg'; } } else { $image = 'unkown.jpg'; }
Output for git.master, git.master_jit, rfc.property-hooks

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