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', '09:00 AM' => '12:00 AM'], 'Mon' => ['09:00 AM' => '12:00 AM'], 'Tue' => ['09:00 AM' => '12:00 AM'], 'Wed' => ['09:00 AM' => '12:00 AM'], 'Thu' => ['04:00 AM' => '12:00 PM'], 'Fri' => ['09:00 AM' => '12:00 AM'], 'Sat' => ['12:00 AM' => '01:00 AM', '09:00 AM' => '12: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 currently: $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.0030.01217.18
7.2.00.0070.00719.32
7.1.200.0100.00315.84
7.1.100.0090.00318.26
7.1.70.0000.00817.44
7.1.60.0130.01019.17
7.1.50.0070.01617.21
7.1.00.0030.03322.44
7.0.200.0040.00416.66
7.0.140.0070.07021.94
7.0.100.0070.08019.97
7.0.90.0000.05019.98
7.0.80.0070.08719.93
7.0.70.0130.07319.98
7.0.60.0070.04320.04
7.0.50.0530.08320.28
7.0.40.0000.08720.10
7.0.30.0170.04020.13
7.0.20.0170.07320.13
7.0.10.0100.05720.17
7.0.00.0070.05720.02
5.6.280.0000.07721.04
5.6.250.0070.06320.62
5.6.240.0070.04020.63
5.6.230.0070.08320.67
5.6.220.0070.08720.52
5.6.210.0100.07720.56
5.6.200.0030.05321.12
5.6.190.0130.07020.96
5.6.180.0170.06721.17
5.6.170.0030.08020.96
5.6.160.0030.08321.11
5.6.150.0100.05321.09
5.6.140.0130.07721.01
5.6.130.0070.05321.03
5.6.120.0100.08321.16
5.6.110.0070.05321.03
5.6.100.0100.08320.99
5.6.90.0070.08021.05
5.6.80.0170.07320.29
5.6.70.0070.07720.48
5.6.60.0070.08020.37
5.6.50.0070.07720.52
5.6.40.0100.07320.39
5.6.30.0100.07720.39
5.6.20.0070.07720.43
5.6.10.0030.08320.46
5.6.00.0100.07720.48
5.5.380.0070.04020.42
5.5.370.0100.08020.42
5.5.360.0100.08020.40
5.5.350.0100.07020.42
5.5.340.0070.06320.89
5.5.330.0070.08320.92
5.5.320.0130.08320.90
5.5.310.0130.06020.87
5.5.300.0130.04720.89
5.5.290.0170.03720.83
5.5.280.0130.07320.87
5.5.270.0100.05720.79
5.5.260.0130.08020.87
5.5.250.0070.08320.57
5.5.240.0030.06020.26
5.5.230.0070.08720.26
5.5.220.0030.04720.26
5.5.210.0070.07320.29
5.5.200.0070.06720.09
5.5.190.0070.08320.27
5.5.180.0000.05320.18
5.5.160.0070.08020.28
5.5.150.0070.08020.09
5.5.140.0100.03320.23
5.5.130.0030.05020.20
5.5.120.0070.04020.26
5.5.110.0070.07320.23
5.5.100.0100.08320.06
5.5.90.0000.07720.07
5.5.80.0100.07020.15
5.5.70.0070.06020.15
5.5.60.0030.07720.13
5.5.50.0070.04720.03
5.5.40.0100.07020.09
5.5.30.0170.06720.10
5.5.20.0270.05720.00
5.5.10.0070.04320.05
5.5.00.0070.07719.99
5.4.450.0070.07719.46
5.4.440.0000.04019.27
5.4.430.0100.07319.39
5.4.420.0100.07319.44
5.4.410.0070.04019.16
5.4.400.0130.05719.03
5.4.390.0000.06018.78
5.4.380.0070.05319.05
5.4.370.0030.04318.94
5.4.360.0030.04319.14
5.4.350.0070.07719.13
5.4.340.0030.04319.11
5.4.320.0070.04319.04
5.4.310.0130.06719.10
5.4.300.0070.07718.80
5.4.290.0100.06319.05
5.4.280.0070.08019.08
5.4.270.0130.07018.98
5.4.260.0030.07019.12
5.4.250.0100.07319.11
5.4.240.0070.06019.02
5.4.230.0230.06019.13
5.4.220.0070.08719.22
5.4.210.0100.03019.22
5.4.200.0070.05719.14
5.4.190.0030.07019.15
5.4.180.0100.07719.02
5.4.170.0130.07019.08
5.4.160.0030.04019.05
5.4.150.0030.07319.05
5.4.140.0030.05016.12
5.4.130.0070.04016.41
5.4.120.0100.04316.41
5.4.110.0000.04716.32
5.4.100.0100.06716.48
5.4.90.0000.05316.35
5.4.80.0170.05716.35
5.4.70.0070.06716.27
5.4.60.0100.04316.44
5.4.50.0030.05716.30
5.4.40.0100.06716.40
5.4.30.0100.07316.18
5.4.20.0030.07716.35
5.4.10.0070.08016.38
5.4.00.0070.07015.79
5.3.290.0070.07314.66
5.3.280.0070.05314.56
5.3.270.0070.06014.60
5.3.260.0030.04014.60
5.3.250.0100.07014.60
5.3.240.0030.04714.59
5.3.230.0170.06714.60
5.3.220.0030.05314.43
5.3.210.0070.08014.43
5.3.200.0030.08014.58
5.3.190.0100.05014.55
5.3.180.0030.07714.43
5.3.170.0170.03714.48
5.3.160.0030.03714.55
5.3.150.0030.07314.43
5.3.140.0130.07014.41
5.3.130.0100.06014.54
5.3.120.0030.04714.41
5.3.110.0100.04314.38
5.3.100.0100.05713.86
5.3.90.0030.04314.03
5.3.80.0030.05313.79
5.3.70.0100.06313.96
5.3.60.0070.07013.91
5.3.50.0100.06313.94
5.3.40.0070.06013.91
5.3.30.0070.07713.89
5.3.20.0170.03013.68
5.3.10.0100.06713.52
5.3.00.0030.07313.63
5.2.170.0070.05311.14
5.2.160.0030.03710.98
5.2.150.0030.06311.00
5.2.140.0030.06710.98
5.2.130.0070.05711.10
5.2.120.0030.05310.93
5.2.110.0070.04010.93
5.2.100.0070.05711.02
5.2.90.0070.03011.12
5.2.80.0070.06011.02
5.2.70.0170.05010.93
5.2.60.0030.06011.10
5.2.50.0000.04311.05
5.2.40.0030.03310.85
5.2.30.0070.05710.96
5.2.20.0070.03310.96
5.2.10.0000.04310.76
5.2.00.0070.05710.57
5.1.60.0030.02710.34
5.1.50.0030.05310.34
5.1.40.0030.05010.34
5.1.30.0000.06010.34
5.1.20.0030.05710.41
5.1.10.0100.03010.34
5.1.00.0030.03010.34
5.0.50.0030.03010.34
5.0.40.0070.04710.34
5.0.30.0070.06310.34
5.0.20.0070.04010.34
5.0.10.0100.03710.34
5.0.00.0000.04710.34
4.4.90.0030.01710.34
4.4.80.0000.02710.34
4.4.70.0030.03710.34
4.4.60.0030.03710.34
4.4.50.0070.03010.34
4.4.40.0030.05310.34
4.4.30.0000.03710.34
4.4.20.0000.03310.34
4.4.10.0000.03710.34
4.4.00.0070.05010.34
4.3.110.0070.02010.34
4.3.100.0070.03710.34
4.3.90.0030.01710.34
4.3.80.0030.05310.34
4.3.70.0070.01310.34
4.3.60.0030.03010.34
4.3.50.0100.02710.34
4.3.40.0000.04710.34
4.3.30.0000.02310.34
4.3.20.0070.02310.34
4.3.10.0070.03010.34
4.3.00.0000.03310.34

preferences:
33.07 ms | 401 KiB | 5 Q