3v4l.org

run code in 300+ PHP versions simultaneously
<?php function drawMonth($month, $year, $jelentkezettNapok, $napiJelentkezokSzama) { // $months = Array("Január", "Február", "Március", "Április", "Május", "Június", "Július", // "Augusztus", "Szeptember", "Október", "November", "December"); //echo "<p class='honapNeve'>".$months[$month - 1]."</p>"; // echo "<table class='naptar'>"; // echo "<tr><th>H</th><th>K</th><th>Sz</th><th>Cs</th><th>P</th><th>Sz</th><th>V</th></tr>"; $firstDayOfTheMonth = mktime(0, 0, 0, $month, 1, $year); $d = getdate($firstDayOfTheMonth); // Vasarnap helyett hetfo az elso nap a heten. Pl. "6" jelentese: szombaton kezdodik a honap. $dayOfTheWeekOfFirstDayOfTheMonth = (6 + $d["wday"]) % 7 + 1; // Hany napos a honap. $totalDaysInCurrentMonth = date("t", $firstDayOfTheMonth); $kellenekUresNapokAHonapVegen = true; for ($i = 0; $i < $totalDaysInCurrentMonth + ($dayOfTheWeekOfFirstDayOfTheMonth - 1); $i++) { // Csak az aktuális héttől kezdve. Megjegyzés: date("W") hétfőt tekinti a hét első napjának, ami nekünk pont megfelel. $day = $i - $dayOfTheWeekOfFirstDayOfTheMonth + 2; $dateWeek = date("W", mktime(0, 0, 0, $month, $day, $year)); /*if (intval(date("W", $firstDayOfTheMonth)) > intval($dateWeek)) { continue; }*/ $thisMondayInt = intval(date('Ymd', strtotime('- ' . (intval(date('N')) - 1) . ' days'))); $dateInt = intval(date("Ymd", mktime(0, 0, 0, $month, $day, $year))); if ($thisMondayInt > $dateInt) { continue; } // A hónap végén azokat a heteket nem jelenítjük meg, amikre még nem lehetne jelentkezni. $utolsoJelentkezhetoNap = strtotime("+ 28 day"); $utolsoJelentkezhetoHet = intval(date("W", strtotime("+ 28 day"))); /*if ($utolsoJelentkezhetoHet < intval(date("W"))) { // Ez decemberben fordulhat elo, amikor is 28 nap mulva mar januarra esik. Ebben az esetben // az egesz honapot ki kell irni. $utolsoJelentkezhetoHet += 52; } TODO */ // date("W", mktime(0, 0, 0, 12, 31, 2012)) hibasan 1-et ad 53 helyett, ezert a december // honapot kulon kell kezelni. if (!($month == 12 && $day >= 3) && intval($dateWeek) > $utolsoJelentkezhetoHet) { $kellenekUresNapokAHonapVegen = false; continue; } if ($i % 7 == 0) { echo "<tr>"; } if ($i < $dayOfTheWeekOfFirstDayOfTheMonth - 1) { // Ures napok a honap elejen. echo "<td class='noborder'></td>"; } else if ($i < $totalDaysInCurrentMonth + $dayOfTheWeekOfFirstDayOfTheMonth - 1){ // Naptari napok. $day = $i - $dayOfTheWeekOfFirstDayOfTheMonth + 2; $date = date("Y-m-d", mktime(0, 0, 0, $month, $day, $year)); $napiJelentkezok = isset($napiJelentkezokSzama[$date]) ? $napiJelentkezokSzama[$date] : 0; /*if (isset($jelentkezettNapok[$date])) { if (isDayInTheFuture($date)) { echo "<td title='Klikkelj a lemondáshoz' id='nap-".$date."' class='registered' onclick='lemondasMegerositese(\"".$date."\")'><span class='notToday'>".$day."</span>".getNapiJelentkezokHtml($napiJelentkezok)."</td>"; } else { if (isToday($date)) { echo "<td id='nap-".$date."' class='todayRegistered today'><span class='today'>".$day."</span>".getNapiJelentkezokHtml($napiJelentkezok)."</td>"; } else { echo "<td id='nap-".$date."' class='pastRegistered'><span class='notToday'>".$day."</span>".getNapiJelentkezokHtml($napiJelentkezok)."</td>"; } } } else { if (isToday($date)) { echo "<td id='nap-".$date."' class='notAvailableForRegistration today'><span class='today'>".$day."</span>".getNapiJelentkezokHtml($napiJelentkezok)."</td>"; } else { echo "<td title='Klikkelj a jelentkezéshez' id='nap-".$date."' " .(isDayAvailableForRegistration($date, $jelentkezettNapok) ? "class='availableForRegistration' onclick='jelentkezesMegerositese(\"".$date."\")'><span class='notToday'>".$day."</span>".getNapiJelentkezokHtml($napiJelentkezok)."</td>" : "class='notAvailableForRegistration'><span class='notToday'>".$day."</span></td>"); } }*/ echo $day . "nap "; } else { // TODO(palinko): Kell ez? echo "<td class='noborder'></td>"; } if ($i % 7 == 6) { echo "</tr>"; } } // Üres napok a hónap végén. Csak akkor, ha nem üres hetet (7 üres napot) kellene kiírni. // TODO(palinko): $kellenekUresNapokAHonapVegen-t helyesen számolni eredetileg is. if ($kellenekUresNapokAHonapVegen && ($totalDaysInCurrentMonth + ($dayOfTheWeekOfFirstDayOfTheMonth - 1)) % 7 > 0) { for ($i = ($totalDaysInCurrentMonth + ($dayOfTheWeekOfFirstDayOfTheMonth - 1)) % 7; $i < 7; $i++) { echo "<td class='noborder'></td>"; } } // echo "</table>"; } drawMonth(1, 2013, array(), array()); ?>

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)
8.3.60.0040.01516.50
8.3.50.0110.00818.20
8.3.40.0100.00718.82
8.3.30.0070.00719.09
8.3.20.0060.00918.98
8.3.10.0070.00318.82
8.3.00.0040.00717.88
8.2.180.0100.00717.13
8.2.170.0080.00822.96
8.2.160.0150.00819.25
8.2.150.0080.00024.18
8.2.140.0160.01024.66
8.2.130.0000.00826.16
8.2.120.0040.00420.92
8.2.110.0060.00320.47
8.2.100.0060.00618.16
8.2.90.0030.00617.88
8.2.80.0030.00519.20
8.2.70.0060.00318.00
8.2.60.0000.00818.05
8.2.50.0030.00618.16
8.2.40.0030.00620.13
8.2.30.0040.00417.98
8.2.20.0030.00718.02
8.2.10.0080.00018.17
8.2.00.0030.00818.20
8.1.280.0120.00325.92
8.1.270.0080.00023.99
8.1.260.0030.00526.35
8.1.250.0040.00428.09
8.1.240.0080.01524.14
8.1.230.0090.00317.95
8.1.220.0000.01017.89
8.1.210.0000.00818.77
8.1.200.0030.00717.47
8.1.190.0000.00817.48
8.1.180.0040.00418.10
8.1.170.0060.00317.63
8.1.160.0030.00519.04
8.1.150.0050.00318.86
8.1.140.0040.00417.68
8.1.130.0040.00417.96
8.1.120.0070.00017.77
8.1.110.0050.00317.66
8.1.100.0000.00817.76
8.1.90.0000.00717.78
8.1.80.0040.00417.72
8.1.70.0040.00417.67
8.1.60.0050.00317.82
8.1.50.0040.00417.66
8.1.40.0050.00317.75
8.1.30.0030.00517.76
8.1.20.0060.00617.87
8.1.10.0050.00317.83
8.1.00.0000.00817.87
8.0.300.0030.00518.77
8.0.290.0030.00517.13
8.0.280.0040.00418.75
8.0.270.0040.00417.44
8.0.260.0000.00717.22
8.0.250.0000.01017.27
8.0.240.0000.00817.30
8.0.230.0040.00417.18
8.0.220.0000.00717.29
8.0.210.0000.00817.26
8.0.200.0070.00017.31
8.0.190.0030.00617.30
8.0.180.0000.00917.33
8.0.170.0030.00617.21
8.0.160.0040.00417.15
8.0.150.0030.00517.27
8.0.140.0040.00417.16
8.0.130.0030.00313.57
8.0.120.0050.00517.14
8.0.110.0040.00417.11
8.0.100.0040.00417.19
8.0.90.0000.00817.28
8.0.80.0160.00017.27
8.0.70.0040.00417.21
8.0.60.0040.00417.30
8.0.50.0090.00017.13
8.0.30.0120.00817.09
8.0.20.0120.00817.28
8.0.10.0000.00817.47
8.0.00.0090.01017.27
7.4.330.0050.00013.15
7.4.320.0030.00316.72
7.4.300.0030.00316.76
7.4.290.0050.00216.74
7.4.280.0040.00416.73
7.4.270.0000.00716.79
7.4.260.0060.00013.44
7.4.250.0000.00816.71
7.4.240.0000.00716.65
7.4.230.0000.00816.64
7.4.220.0160.01016.69
7.4.210.0030.01316.91
7.4.200.0040.00416.91
7.4.190.0000.00716.92
7.4.160.0030.01316.68
7.4.150.0090.00916.74
7.4.140.0110.01116.82
7.4.130.0090.00916.90
7.4.120.0140.00516.71
7.4.110.0150.00916.84
7.4.100.0110.00716.82
7.4.90.0090.00916.89
7.4.80.0100.00719.39
7.4.70.0070.01016.80
7.4.60.0120.00616.84
7.4.50.0000.01016.96
7.4.40.0070.00716.61
7.4.30.0140.00416.73
7.4.00.0060.00915.10
7.3.330.0030.00313.59
7.3.320.0030.00313.39
7.3.310.0000.00816.58
7.3.300.0030.00316.57
7.3.290.0060.01116.60
7.3.280.0100.00716.65
7.3.270.0150.00316.73
7.3.260.0000.01916.61
7.3.250.0110.01116.76
7.3.240.0200.00316.87
7.3.230.0080.01116.88
7.3.210.0090.00916.57
7.3.200.0040.01316.80
7.3.190.0090.00916.87
7.3.180.0050.01116.64
7.3.170.0070.01116.68
7.3.160.0100.00716.71
7.3.120.0080.00615.12
7.2.330.0090.00917.11
7.2.320.0150.00316.92
7.2.310.0160.00617.09
7.2.300.0070.01117.13
7.2.290.0120.00616.98
7.2.60.0030.01117.08
7.2.00.0070.01019.82
7.1.200.0080.00815.88
7.1.100.0060.00918.47
7.1.70.0070.01017.47
7.1.60.0110.00419.30
7.1.50.0000.01916.99
7.1.00.0070.05722.51
7.0.200.0060.00616.81
7.0.140.0070.07021.95
7.0.120.0070.04722.03
7.0.100.0130.06320.09
7.0.90.0230.06720.06
7.0.80.0070.04019.93
7.0.70.0100.07319.96
7.0.60.0100.07720.03
7.0.50.0030.08020.16
7.0.40.0070.08320.19
7.0.30.0000.07320.09
7.0.20.0070.08020.04
7.0.10.0070.08020.09
7.0.00.0030.09020.08
5.6.280.0130.06721.12
5.6.250.0100.08020.68
5.6.240.0070.08720.59
5.6.230.0170.06020.68
5.6.220.0100.08020.53
5.6.210.0100.07020.63
5.6.200.0070.04721.13
5.6.190.0100.04321.07
5.6.180.0030.04320.97
5.6.170.0100.08721.13
5.6.160.0100.08720.96
5.6.150.0100.08321.13
5.6.140.0030.08720.95
5.6.130.0030.07721.15
5.6.120.0070.08721.02
5.6.110.0100.05321.03
5.6.100.0070.09021.12
5.6.90.0100.08721.11
5.6.80.0030.09020.51
5.6.70.0130.07320.48
5.6.60.0000.05320.52
5.6.50.0030.08020.42
5.6.40.0070.07320.50
5.6.30.0130.07720.45
5.6.20.0030.07320.45
5.6.10.0070.08320.33
5.6.00.0070.05020.41
5.5.380.0030.08020.38
5.5.370.0030.08720.42
5.5.360.0030.09320.36
5.5.350.0070.05020.50
5.5.340.0130.03720.95
5.5.330.0130.07720.93
5.5.320.0170.07320.80
5.5.310.0170.08020.91
5.5.300.0000.06720.94
5.5.290.0100.08320.88
5.5.280.0030.06320.62
5.5.270.0030.07720.75
5.5.260.0100.06720.84
5.5.250.0130.07020.75
5.5.240.0170.07020.20
5.5.230.0070.07720.29
5.5.220.0070.04720.27
5.5.210.0000.06320.31
5.5.200.0070.05720.29
5.5.190.0070.07720.29
5.5.180.0130.06320.26
5.5.160.0030.05320.24
5.5.150.0100.07020.23
5.5.140.0100.05720.28
5.5.130.0030.07020.14
5.5.120.0030.07720.20
5.5.110.0100.08020.22
5.5.100.0030.08720.12
5.5.90.0130.06720.09
5.5.80.0170.07319.98
5.5.70.0130.07720.18
5.5.60.0030.04020.07
5.5.50.0070.06320.13
5.5.40.0030.07720.17
5.5.30.0070.07720.05
5.5.20.0100.07720.12
5.5.10.0130.06720.03
5.5.00.0170.06720.15
5.4.450.0030.05719.37
5.4.440.0170.07019.37
5.4.430.0030.08019.23
5.4.420.0230.05719.20
5.4.410.0100.03719.32
5.4.400.0070.07319.00
5.4.390.0070.07019.05
5.4.380.0070.06019.20
5.4.370.0170.07019.09
5.4.360.0100.06019.20
5.4.350.0100.07319.08
5.4.340.0100.07719.21
5.4.320.0030.05718.87
5.4.310.0030.04319.03
5.4.300.0100.07719.16
5.4.290.0030.07318.85
5.4.280.0030.05719.16
5.4.270.0030.05019.04
5.4.260.0070.06719.15
5.4.250.0030.07718.84
5.4.240.0100.07719.11
5.4.230.0170.06319.04
5.4.220.0000.07718.84
5.4.210.0100.07318.84
5.4.200.0130.03719.04
5.4.190.0100.07019.02
5.4.180.0100.04319.04
5.4.170.0000.04718.87
5.4.160.0070.07719.02
5.4.150.0100.07319.02
5.4.140.0100.04016.49
5.4.130.0070.04016.46
5.4.120.0030.04316.45
5.4.110.0100.07316.36
5.4.100.0070.06316.49
5.4.90.0000.07316.50
5.4.80.0030.07016.49
5.4.70.0100.05016.42
5.4.60.0030.06016.44
5.4.50.0130.06016.33
5.4.40.0130.04016.36
5.4.30.0100.07016.48
5.4.20.0070.06316.30
5.4.10.0030.08316.44
5.4.00.0030.07315.86
5.3.290.0030.05314.68
5.3.280.0130.07314.68
5.3.270.0070.07714.64
5.3.260.0100.04314.58
5.3.250.0030.07314.61
5.3.240.0070.07314.69
5.3.230.0100.06314.71
5.3.220.0130.06314.70
5.3.210.0130.07314.53
5.3.200.0070.07714.72
5.3.190.0030.07014.62
5.3.180.0070.04314.56
5.3.170.0070.07314.65
5.3.160.0100.07714.64
5.3.150.0070.06014.57
5.3.140.0130.07014.64
5.3.130.0130.06714.59
5.3.120.0070.08014.57
5.3.110.0000.07714.59
5.3.100.0100.08014.13
5.3.90.0100.05314.02
5.3.80.0070.07713.97
5.3.70.0070.07313.93
5.3.60.0070.06014.05
5.3.50.0070.04713.91
5.3.40.0070.05313.88
5.3.30.0070.07313.83
5.3.20.0130.06713.75
5.3.10.0100.03313.63
5.3.00.0070.07713.59
5.2.170.0030.05011.35
5.2.160.0100.06011.35
5.2.150.0000.04311.35
5.2.140.0070.06011.35
5.2.130.0030.06311.35
5.2.120.0130.05011.35
5.2.110.0070.06011.35
5.2.100.0000.05311.35
5.2.90.0000.03711.35
5.2.80.0030.05711.35
5.2.70.0070.05711.35
5.2.60.0100.06011.35
5.2.50.0170.04711.35
5.2.40.0030.06311.35
5.2.30.0070.05011.35
5.2.20.0100.04311.35
5.2.10.0070.05711.35
5.2.00.0070.04011.35
5.1.60.0070.02311.35
5.1.50.0170.04011.35
5.1.40.0070.04711.35
5.1.30.0030.05011.35
5.1.20.0000.05311.35
5.1.10.0070.04711.35
5.1.00.0030.05711.35
5.0.50.0030.04311.35
5.0.40.0030.03311.35
5.0.30.0000.06011.35
5.0.20.0070.04711.35
5.0.10.0070.04011.35
5.0.00.0000.03311.35
4.4.90.0070.03311.35
4.4.80.0030.03011.35
4.4.70.0070.02711.35
4.4.60.0030.03711.35
4.4.50.0000.03011.35
4.4.40.0030.05711.35
4.4.30.0070.03011.35
4.4.20.0070.03711.35
4.4.10.0030.03711.35
4.4.00.0030.04311.35
4.3.110.0100.01711.35
4.3.100.0030.02011.35
4.3.90.0000.03711.35
4.3.80.0000.03011.35
4.3.70.0000.03711.35
4.3.60.0000.03011.35
4.3.50.0070.03311.35
4.3.40.0000.04311.35
4.3.30.0030.02011.35
4.3.20.0030.01711.35
4.3.10.0000.02011.35
4.3.00.0000.03011.35

preferences:
52.95 ms | 401 KiB | 5 Q