3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Based on the following business hours: * (Note : I setup the hours for each day if they carry-over) * everyday is open from 09:00 AM - 12:00 AM * Sun/Sat open extra from 12:00 AM - 01:00 AM */ $storeSchedule = [ 'Sun' => ['12:00 AM' => '01:00 AM'], 'Mon' => ['09:00 AM' => '12:00 AM'], 'Tue' => ['09:00 AM' => '12:00 AM'], 'Wed' => ['09:00 AM' => '12:00 AM'], 'Thu' => ['09:00 AM' => '12:00 AM'], 'Fri' => ['09:00 AM' => '12:00 AM'], 'Sat' => ['12:00 AM' => '01:00 AM'] ]; // current OR user supplied UNIX timestamp $timestamp = time(); // default status $status = 'closed'; // get current time object $currentTime = (new DateTime())->setTimestamp($timestamp); // loop through time ranges for current day foreach ($storeSchedule[date('D', $timestamp)] as $startTime => $endTime) { // create time objects from start/end times $startTime = DateTime::createFromFormat('h:i A', $startTime); $endTime = DateTime::createFromFormat('h:i A', $endTime); // check if current time is within a range if (($startTime < $currentTime) && ($currentTime < $endTime)) { $status = 'open'; break; } } echo "We are currentlyd: $status";

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
7.2.60.0000.00917.11
7.2.50.0060.00617.08
7.1.200.0210.00215.69
7.1.70.0070.00017.21
7.1.60.0140.01019.82
7.1.50.0060.01016.89
7.1.00.0100.07022.37
7.0.200.0050.00516.96
7.0.140.0030.07321.98
7.0.100.0030.06019.99
7.0.90.0100.08020.00
7.0.80.0170.07719.97
7.0.70.0100.09019.98
7.0.60.0100.08319.95
7.0.50.0030.09020.35
7.0.40.0030.08020.12
7.0.30.0030.08320.17
7.0.20.0170.06720.03
7.0.10.0070.05720.14
7.0.00.0100.06020.05
5.6.280.0130.06320.77
5.6.250.0070.04020.63
5.6.240.0070.08320.60
5.6.230.0070.07720.57
5.6.220.0030.08720.62
5.6.210.0230.06320.75
5.6.200.0100.05321.00
5.6.190.0100.04720.95
5.6.180.0030.08021.05
5.6.170.0100.08321.04
5.6.160.0130.07021.04
5.6.150.0030.05321.14
5.6.140.0200.07021.05
5.6.130.0130.08020.98
5.6.120.0070.05321.13
5.6.110.0100.04021.04
5.6.100.0030.05021.07
5.6.90.0130.04021.08
5.6.80.0130.07320.36
5.6.70.0100.07320.32
5.6.60.0100.04020.42
5.6.50.0100.07320.46
5.6.40.0030.06720.44
5.6.30.0100.08020.31
5.6.20.0130.08020.31
5.6.10.0070.08020.39
5.6.00.0070.05320.38
5.5.380.0030.08720.37
5.5.370.0030.07720.36
5.5.360.0030.08720.44
5.5.350.0000.07020.45
5.5.340.0100.05020.89
5.5.330.0070.08720.84
5.5.320.0000.08720.89
5.5.310.0070.08020.84
5.5.300.0200.07020.73
5.5.290.0100.08320.90
5.5.280.0130.06320.81
5.5.270.0030.05320.86
5.5.260.0070.08020.87
5.5.250.0070.08020.56
5.5.240.0170.07020.15
5.5.230.0100.08020.11
5.5.220.0100.05720.11
5.5.210.0100.07320.15
5.5.200.0030.05020.29
5.5.190.0170.07320.27
5.5.180.0100.08020.23
5.5.160.0070.04720.21
5.5.150.0100.04320.13
5.5.140.0130.07020.23
5.5.130.0130.07720.08
5.5.120.0130.06720.19
5.5.110.0070.08020.13
5.5.100.0100.07720.08
5.5.90.0030.04020.16
5.5.80.0070.07320.11
5.5.70.0230.06319.94
5.5.60.0170.05020.09
5.5.50.0130.06020.11
5.5.40.0070.07720.11
5.5.30.0030.07720.08
5.5.20.0070.08020.14
5.5.10.0100.05720.04
5.5.00.0030.08020.07
5.4.450.0130.06719.14
5.4.440.0130.07319.26
5.4.430.0130.07319.44
5.4.420.0100.04319.32
5.4.410.0030.04719.29
5.4.400.0070.08018.98
5.4.390.0100.04319.07
5.4.380.0100.07019.05
5.4.370.0130.07319.03
5.4.360.0130.06719.10
5.4.350.0070.07319.03
5.4.340.0130.07018.90
5.4.320.0100.07319.14
5.4.310.0030.07719.12
5.4.300.0030.08719.12
5.4.290.0130.07318.78
5.4.280.0070.08319.25
5.4.270.0070.07019.12
5.4.260.0070.06719.05
5.4.250.0070.07019.11
5.4.240.0000.06719.03
5.4.230.0030.10019.11
5.4.220.0130.07319.04
5.4.210.0100.07718.94
5.4.200.0100.07019.06
5.4.190.0070.04319.01
5.4.180.0030.05019.02
5.4.170.0000.05018.97
5.4.160.0100.06318.96
5.4.150.0100.06719.21
5.4.140.0030.08016.44
5.4.130.0130.05716.40
5.4.120.0130.06316.38
5.4.110.0130.07016.36
5.4.100.0030.04316.39
5.4.90.0070.07016.26
5.4.80.0100.08016.35
5.4.70.0100.06716.41
5.4.60.0070.07316.25
5.4.50.0130.07316.38
5.4.40.0100.07316.36
5.4.30.0030.07716.32
5.4.20.0070.07016.41
5.4.10.0200.05316.39
5.4.00.0200.02715.73
5.3.290.0070.07014.53
5.3.280.0100.04314.59
5.3.270.0030.07714.58
5.3.260.0100.07314.58
5.3.250.0100.04014.60
5.3.240.0130.04314.62
5.3.230.0070.04314.59
5.3.220.0130.04014.54
5.3.210.0030.07314.56
5.3.200.0070.07714.38
5.3.190.0100.03714.41
5.3.180.0200.06014.55
5.3.170.0030.07714.57
5.3.160.0100.07314.47
5.3.150.0130.06714.57
5.3.140.0100.07314.53
5.3.130.0030.06014.51
5.3.120.0070.03714.37
5.3.110.0070.08314.51
5.3.100.0100.07314.01
5.3.90.0130.07013.93
5.3.80.0070.04313.99
5.3.70.0000.07713.98
5.3.60.0070.08013.99
5.3.50.0100.06313.95
5.3.40.0100.07713.91
5.3.30.0130.06713.92
5.3.20.0070.04013.64
5.3.10.0000.04713.65
5.3.00.0030.07713.54
5.2.170.0030.06311.34
5.2.160.0070.06311.34
5.2.150.0070.03711.34
5.2.140.0000.05711.34
5.2.130.0070.06311.34
5.2.120.0100.04311.34
5.2.110.0000.03711.34
5.2.100.0000.06311.34
5.2.90.0100.05011.34
5.2.80.0100.06011.34
5.2.70.0130.03011.34
5.2.60.0030.06011.34
5.2.50.0030.06011.34
5.2.40.0000.05711.34
5.2.30.0030.06311.34
5.2.20.0070.06011.34
5.2.10.0100.05311.34
5.2.00.0030.06311.34
5.1.60.0030.05711.34
5.1.50.0070.04311.34
5.1.40.0030.04311.34
5.1.30.0070.05711.34
5.1.20.0100.05011.34
5.1.10.0070.05311.34
5.1.00.0070.05311.34
5.0.50.0030.03711.34
5.0.40.0000.04011.34
5.0.30.0100.05711.34
5.0.20.0030.04011.34
5.0.10.0070.04311.34
5.0.00.0100.06011.34
4.4.90.0030.01711.34
4.4.80.0000.02011.34
4.4.70.0000.03711.34
4.4.60.0070.03311.34
4.4.50.0070.03311.34
4.4.40.0000.05311.34
4.4.30.0000.04011.34
4.4.20.0070.03011.34
4.4.10.0030.02711.34
4.4.00.0000.03011.34
4.3.110.0000.03711.34
4.3.100.0070.03311.34
4.3.90.0030.03311.34
4.3.80.0030.05011.34
4.3.70.0070.03011.34
4.3.60.0030.02311.34
4.3.50.0070.02711.34
4.3.40.0000.05011.34
4.3.30.0000.03711.34
4.3.20.0030.02711.34
4.3.10.0000.03711.34
4.3.00.0000.03711.34

preferences:
33.33 ms | 401 KiB | 5 Q