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 = array( 'mon' => '9:00 AM - 12:00 AM', 'tue' => '9:00 AM - 12:00 AM', 'wed' => '9:00 AM - 12:00 AM', 'thu' => '9:00 AM - 12:00 AM', 'fri' => '9:00 AM - 1:00 AM', 'sat' => '9:00 AM - 1:00 PM, 2:00 PM - 1:00 AM', 'sun' => 'closed' ); // 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.00.0040.01419.65
7.1.200.0070.00715.84
7.1.100.0080.00818.22
7.1.70.0080.01117.11
7.1.60.0100.01419.29
7.1.50.0070.01617.01
7.1.00.0000.08022.31
7.0.200.0000.00717.08
7.0.140.0030.07322.00
7.0.80.0070.08320.14
7.0.70.0030.08019.96
7.0.60.0170.07719.97
7.0.50.0100.09020.18
7.0.40.0030.09019.96
7.0.30.0070.05320.09
7.0.20.0070.08320.14
7.0.10.0170.07720.03
7.0.00.0100.06020.04
5.6.280.0100.06720.91
5.6.230.0070.07020.59
5.6.220.0100.05020.64
5.6.210.0130.08020.75
5.6.200.0170.06321.11
5.6.190.0170.06720.94
5.6.180.0130.06721.05
5.6.170.0070.08321.09
5.6.160.0000.05021.17
5.6.150.0100.05021.07
5.6.140.0100.08021.17
5.6.130.0030.06721.11
5.6.120.0070.08721.00
5.6.110.0200.07721.07
5.6.100.0030.09321.16
5.6.90.0070.08321.01
5.6.80.0030.08320.40
5.6.70.0070.04720.48
5.6.60.0070.07320.31
5.6.50.0070.07020.32
5.6.40.0070.07720.54
5.6.30.0070.07020.44
5.6.20.0170.07020.30
5.6.10.0030.04020.37
5.6.00.0070.08020.34
5.5.370.0070.08020.42
5.5.360.0170.07320.50
5.5.350.0000.09320.42
5.5.340.0130.06020.74
5.5.330.0130.07720.93
5.5.320.0100.08020.79
5.5.310.0130.07320.76
5.5.300.0200.06020.87
5.5.290.0000.06320.91
5.5.280.0100.07020.83
5.5.270.0130.07720.91
5.5.260.0170.08020.85
5.5.250.0230.06320.71
5.5.240.0100.07720.27
5.5.230.0030.07320.03
5.5.220.0070.06720.21
5.5.210.0130.06020.18
5.5.200.0030.08020.22
5.5.190.0030.07020.28
5.5.180.0100.07020.21
5.5.160.0030.08320.13
5.5.150.0030.04020.13
5.5.140.0030.04020.15
5.5.130.0030.04720.21
5.5.120.0070.04720.08
5.5.110.0070.07020.18
5.5.100.0100.05720.08
5.5.90.0030.04320.16
5.5.80.0100.05020.11
5.5.70.0030.05319.97
5.5.60.0130.03720.02
5.5.50.0170.07319.96
5.5.40.0070.04320.14
5.5.30.0130.07020.08
5.5.20.0100.08020.14
5.5.10.0070.04719.97
5.5.00.0100.07320.06
5.4.450.0070.08319.23
5.4.440.0100.08019.47
5.4.430.0100.05719.42
5.4.420.0070.07319.35
5.4.410.0100.07719.13
5.4.400.0130.06718.91
5.4.390.0000.06719.14
5.4.380.0070.05319.07
5.4.370.0000.06319.23
5.4.360.0100.07719.05
5.4.350.0070.07319.11
5.4.340.0100.04719.10
5.4.320.0030.08019.12
5.4.310.0030.04319.07
5.4.300.0030.03719.05
5.4.290.0000.04019.09
5.4.280.0070.06718.83
5.4.270.0000.04319.04
5.4.260.0070.07319.23
5.4.250.0030.08319.22
5.4.240.0070.07019.00
5.4.230.0030.04318.89
5.4.220.0070.06719.09
5.4.210.0030.05719.06
5.4.200.0000.05318.99
5.4.190.0100.07018.77
5.4.180.0100.05319.05
5.4.170.0100.04319.06
5.4.160.0130.05719.08
5.4.150.0070.06018.77
5.4.140.0070.07716.32
5.4.130.0070.05316.41
5.4.120.0030.07716.44
5.4.110.0070.07316.31
5.4.100.0170.06316.50
5.4.90.0070.07016.48
5.4.80.0030.07016.39
5.4.70.0130.06716.38
5.4.60.0000.08016.24
5.4.50.0100.06016.38
5.4.40.0100.05716.46
5.4.30.0070.06016.27
5.4.20.0000.08016.28
5.4.10.0100.06716.39
5.4.00.0130.04715.72
5.3.290.0100.07714.68
5.3.280.0070.05014.45
5.3.270.0070.04314.57
5.3.260.0030.05714.43
5.3.250.0100.05714.54
5.3.240.0000.07314.59
5.3.230.0070.07314.61
5.3.220.0130.03714.53
5.3.210.0070.07014.48
5.3.200.0100.07014.57
5.3.190.0070.07314.53
5.3.180.0130.06714.44
5.3.170.0030.07314.42
5.3.160.0100.07314.43
5.3.150.0100.04714.39
5.3.140.0130.07014.51
5.3.130.0100.05314.55
5.3.120.0070.07714.41
5.3.110.0100.06014.54
5.3.100.0030.05013.98
5.3.90.0070.07013.98
5.3.80.0030.05713.98
5.3.70.0070.04313.79
5.3.60.0000.07713.96
5.3.50.0130.07013.81
5.3.40.0030.07713.81
5.3.30.0030.06013.66
5.3.20.0130.06713.59
5.3.10.0070.07013.65
5.3.00.0100.06713.60
5.2.170.0100.05011.06
5.2.160.0100.05711.18
5.2.150.0070.06011.00
5.2.140.0100.06010.95
5.2.130.0030.06311.02
5.2.120.0000.05711.08
5.2.110.0070.06011.09
5.2.100.0030.06310.95
5.2.90.0100.05311.09
5.2.80.0070.06011.14
5.2.70.0030.06711.12
5.2.60.0000.04010.89
5.2.50.0030.03310.98
5.2.40.0030.03011.04
5.2.30.0000.04010.89
5.2.20.0070.05710.88
5.2.10.0070.04310.87
5.2.00.0100.05310.74
5.1.60.0000.05710.04
5.1.50.0030.05310.02
5.1.40.0030.0579.98
5.1.30.0130.03310.20
5.1.20.0000.03310.23
5.1.10.0000.05010.11
5.1.00.0070.05010.09
5.0.50.0100.0408.54
5.0.40.0000.0408.41
5.0.30.0000.0578.21
5.0.20.0130.0338.29
5.0.10.0030.0278.01
5.0.00.0100.0578.13
4.4.90.0070.0237.37
4.4.80.0030.0177.37
4.4.70.0000.0407.37
4.4.60.0000.0377.37
4.4.50.0000.0377.37
4.4.40.0000.0537.37
4.4.30.0070.0177.37
4.4.20.0100.0307.37
4.4.10.0070.0337.37
4.4.00.0000.0477.37
4.3.110.0000.0377.37
4.3.100.0030.0337.37
4.3.90.0000.0207.37
4.3.80.0000.0537.37
4.3.70.0070.0307.37
4.3.60.0030.0307.37
4.3.50.0000.0377.37
4.3.40.0030.0407.37
4.3.30.0000.0237.37
4.3.20.0030.0337.37
4.3.10.0030.0337.37
4.3.00.0000.0337.37

preferences:
39.7 ms | 401 KiB | 5 Q