3v4l.org

run code in 300+ PHP versions simultaneously
<?php $intervals = array( '0' => 0, '86400' => 86400, '0 second' => 0, '1 second' => 1, '1 minute' => 60, '1 hour' => 60 * 60, '1 day' => 60 * 60 * 24, '1 month' => 31 * 60 * 60 * 24 '1 year' => 60 * 60 * 24 * 365, '10 years' => 60 * 60 * 24 * 365 * 10, '1 day + 12hours' => 60 * 60 * 24 + 12 * 60 * 60, ); foreach ($intervals as $interval => $expected) { if (is_numeric($interval)) { $found = (int) $interval; } else { $zeroDate = new \DateTime(); // can't use @0, it will add 3600 seconds to final output on php 5.3.9 - 5.4.7 $zeroDate->setTimestamp(0); $zeroDate->add(\DateInterval::createFromDateString($interval)); $found = $zeroDate->getTimestamp(); } echo sprintf("found %s expected %s\n", $found, $expected); }

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)
5.4.280.0070.04512.38
5.4.270.0090.03512.37
5.4.260.0070.03912.38
5.4.250.0070.03812.38
5.4.240.0050.03812.38
5.4.230.0050.04312.37
5.4.220.0080.03912.37
5.4.210.0070.04012.37
5.4.200.0070.04412.37
5.4.190.0090.04012.36
5.4.180.0110.04412.36
5.4.170.0060.04512.37
5.4.160.0070.03612.37
5.4.150.0100.03512.36
5.4.140.0070.04112.06
5.4.130.0070.04112.04
5.4.120.0070.04112.00
5.4.110.0070.04212.00
5.4.100.0080.03911.99
5.4.90.0090.03711.99
5.4.80.0070.03611.99
5.4.70.0050.03612.00
5.4.60.0040.03611.99
5.4.50.0060.03511.99
5.4.40.0050.04111.98
5.4.30.0070.03611.98
5.4.20.0050.03711.97
5.4.10.0070.03511.98
5.4.00.0040.03811.47
5.3.280.0070.04112.71
5.3.270.0040.04212.73
5.3.260.0080.04212.72
5.3.250.0050.03912.72
5.3.240.0060.03812.72
5.3.230.0100.03512.71
5.3.220.0060.03812.68
5.3.210.0110.04212.68
5.3.200.0070.03512.68
5.3.190.0090.03812.68
5.3.180.0090.04112.67
5.3.170.0100.04112.67
5.3.160.0050.03812.67
5.3.150.0070.04012.67
5.3.140.0050.03912.66
5.3.130.0080.03812.66
5.3.120.0090.04212.66
5.3.110.0080.04112.66
5.3.100.0080.03812.12
5.3.90.0060.03812.08
5.3.80.0070.03812.08
5.3.70.0040.04612.07
5.3.60.0090.04212.06
5.3.50.0110.04212.00
5.3.40.0120.04212.00
5.3.30.0080.04111.94
5.3.20.0070.03511.71
5.3.10.0070.03611.68
5.3.00.0050.03911.67

preferences:
139.5 ms | 1394 KiB | 7 Q