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' => ['09:00 AM' => '12:00 AM'], 'Fri' => ['09:00 AM' => '12:00 AM'], 'Sat' => ['00:00 AM' => '12:00 PM'] ]; // 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.0090.00317.07
7.2.00.0070.01419.71
7.1.200.0060.00615.89
7.1.100.0030.01018.22
7.1.70.0070.01117.34
7.1.60.0100.01319.82
7.1.50.0040.00817.23
7.1.00.0030.03322.36
7.0.200.0050.00816.70
7.0.140.0070.07322.09
7.0.80.0130.04319.94
7.0.70.0200.06320.14
7.0.60.0100.06719.98
7.0.50.0030.07720.30
7.0.40.0100.07320.08
7.0.30.0100.04320.17
7.0.20.0130.04020.10
7.0.10.0070.05720.17
7.0.00.0030.05320.05
5.6.280.0030.07020.89
5.6.230.0030.05720.69
5.6.220.0030.05720.66
5.6.210.0100.07320.75
5.6.200.0130.08020.94
5.6.190.0070.08320.96
5.6.180.0000.07021.06
5.6.170.0070.08721.00
5.6.160.0100.04321.04
5.6.150.0100.04321.07
5.6.140.0000.04721.05
5.6.130.0030.05021.10
5.6.120.0000.04721.00
5.6.110.0030.04321.02
5.6.100.0000.04721.09
5.6.90.0070.08320.90
5.6.80.0070.03720.43
5.6.70.0070.03720.49
5.6.60.0070.03320.39
5.6.50.0030.04020.42
5.6.40.0000.05020.31
5.6.30.0070.04720.38
5.6.20.0030.04020.43
5.6.10.0030.04020.31
5.6.00.0070.04020.44
5.5.370.0100.04320.57
5.5.360.0070.07720.41
5.5.350.0100.07720.40
5.5.340.0070.05720.78
5.5.330.0070.08020.84
5.5.320.0070.08320.82
5.5.310.0100.05020.79
5.5.300.0100.04020.90
5.5.290.0070.04020.77
5.5.280.0100.03720.80
5.5.270.0070.04020.88
5.5.260.0100.03720.88
5.5.250.0030.04320.74
5.5.240.0030.06020.26
5.5.230.0100.07020.29
5.5.220.0070.03720.26
5.5.210.0030.05020.20
5.5.200.0070.03720.28
5.5.190.0030.04020.08
5.5.180.0030.04020.13
5.5.160.0030.04320.13
5.5.150.0030.04020.08
5.5.140.0030.05720.19
5.5.130.0070.03720.18
5.5.120.0070.03720.21
5.5.110.0030.04720.13
5.5.100.0030.04020.12
5.5.90.0070.03720.01
5.5.80.0070.03720.10
5.5.70.0100.03020.14
5.5.60.0000.04020.14
5.5.50.0030.04320.10
5.5.40.0070.03020.15
5.5.30.0100.03320.15
5.5.20.0100.03319.93
5.5.10.0070.08320.01
5.5.00.0200.06720.13
5.4.450.0030.04019.42
5.4.440.0070.04019.47
5.4.430.0070.06719.36
5.4.420.0100.07019.42
5.4.410.0000.06019.27
5.4.400.0030.03719.03
5.4.390.0030.04019.07
5.4.380.0070.03319.05
5.4.370.0100.03019.23
5.4.360.0030.04318.81
5.4.350.0000.04018.90
5.4.340.0100.04019.08
5.4.320.0000.04319.10
5.4.310.0100.03018.90
5.4.300.0070.03318.91
5.4.290.0070.04018.78
5.4.280.0000.05019.22
5.4.270.0100.02718.96
5.4.260.0000.04018.96
5.4.250.0030.03719.03
5.4.240.0070.03019.11
5.4.230.0070.03319.11
5.4.220.0030.04019.03
5.4.210.0070.04018.92
5.4.200.0030.04019.07
5.4.190.0000.04019.06
5.4.180.0100.07318.96
5.4.170.0070.05018.95
5.4.160.0130.07019.12
5.4.150.0200.06719.07
5.4.140.0030.07316.42
5.4.130.0070.07016.36
5.4.120.0070.03716.42
5.4.110.0030.03716.27
5.4.100.0130.06716.46
5.4.90.0170.06316.27
5.4.80.0100.07016.40
5.4.70.0100.07016.35
5.4.60.0000.04716.46
5.4.50.0130.05716.26
5.4.40.0030.06016.36
5.4.30.0100.03716.40
5.4.20.0100.07016.37
5.4.10.0070.07016.25
5.4.00.0070.07315.72
5.3.290.0030.03714.63
5.3.280.0000.04014.59
5.3.270.0070.08014.56
5.3.260.0130.06314.43
5.3.250.0070.06714.55
5.3.240.0070.07314.55
5.3.230.0000.06014.57
5.3.220.0030.03714.55
5.3.210.0000.04314.43
5.3.200.0130.07714.51
5.3.190.0070.04714.43
5.3.180.0070.07714.51
5.3.170.0030.07714.42
5.3.160.0030.05714.56
5.3.150.0100.07314.47
5.3.140.0070.07314.42
5.3.130.0030.08314.48
5.3.120.0000.07714.43
5.3.110.0100.07014.41
5.3.100.0130.04713.99
5.3.90.0100.07313.97
5.3.80.0000.04313.95
5.3.70.0000.05714.00
5.3.60.0130.06313.94
5.3.50.0030.05013.93
5.3.40.0030.07313.94
5.3.30.0130.06313.85
5.3.20.0000.06713.68
5.3.10.0100.07013.68
5.3.00.0030.05313.51
5.2.170.0070.03311.10
5.2.160.0070.05711.00
5.2.150.0030.06010.96
5.2.140.0100.05311.20
5.2.130.0030.06310.89
5.2.120.0130.05311.02
5.2.110.0130.05711.04
5.2.100.0070.05711.09
5.2.90.0030.06710.95
5.2.80.0070.05311.02
5.2.70.0030.06310.91
5.2.60.0070.03010.91
5.2.50.0070.06011.01
5.2.40.0070.05010.91
5.2.30.0000.07010.93
5.2.20.0070.06010.91
5.2.10.0130.05010.78
5.2.00.0070.06310.61
5.1.60.0070.05310.07
5.1.50.0030.0539.82
5.1.40.0030.0539.82
5.1.30.0030.05710.39
5.1.20.0000.04710.37
5.1.10.0070.05310.10
5.1.00.0030.03710.05
5.0.50.0070.0278.57
5.0.40.0000.0378.31
5.0.30.0030.0608.27
5.0.20.0030.0438.23
5.0.10.0100.0378.01
5.0.00.0000.0707.98
4.4.90.0030.0237.29
4.4.80.0000.0377.29
4.4.70.0000.0377.29
4.4.60.0000.0377.29
4.4.50.0070.0307.29
4.4.40.0070.0407.29
4.4.30.0030.0337.29
4.4.20.0000.0277.29
4.4.10.0070.0307.29
4.4.00.0030.0537.29
4.3.110.0030.0337.29
4.3.100.0030.0277.29
4.3.90.0070.0237.29
4.3.80.0000.0407.29
4.3.70.0100.0277.29
4.3.60.0030.0277.29
4.3.50.0000.0277.29
4.3.40.0070.0477.29
4.3.30.0070.0177.29
4.3.20.0000.0207.29
4.3.10.0000.0377.29
4.3.00.0000.0307.29

preferences:
32.41 ms | 400 KiB | 5 Q