3v4l.org

run code in 300+ PHP versions simultaneously
<?php function check($dateAdded,$now){ $secondsTillOldEnough = 60*60*2; $secondsInPast = $now->getTimestamp() - $dateAdded->getTimestamp(); $seconds = $secondsTillOldEnough - $secondsInPast; if($secondsInPast > $secondsTillOldEnough){ echo $dateAdded->format('H:i:s'). " Old enough $seconds\n"; } else { echo $dateAdded->format('H:i:s'). " Not Old Enough $seconds\n"; } } $now = new Datetime('now'); echo "Now:" . $now->format('H:i:s')."\n\n"; check(new DateTime('- 13 seconds'),$now); check(new DateTime('- 13 minutes'),$now); check(new DateTime('- 100 minutes'),$now); check(new DateTime('- 125 minutes'),$now);
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.2 - 5.5.8, 5.5.12, 5.5.14 - 5.5.19, 5.5.23 - 5.5.28, 5.5.32 - 5.5.35, 5.5.37, 5.6.0 - 5.6.12, 5.6.14, 5.6.16 - 5.6.22, 5.6.24 - 5.6.29, 5.6.31 - 5.6.40, 7.0.0 - 7.0.5, 7.0.7 - 7.0.9, 7.0.11, 7.0.13 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Now:18:51:49 18:51:36 Not Old Enough 7187 18:38:49 Not Old Enough 6420 17:11:49 Not Old Enough 1200 16:46:49 Old enough -300
Output for 7.3.32 - 7.3.33, 8.0.13
Now:16:51:49 16:51:36 Not Old Enough 7187 16:38:49 Not Old Enough 6420 15:11:49 Not Old Enough 1200 14:46:49 Old enough -300
Output for 5.5.0 - 5.5.1, 5.5.9 - 5.5.11, 5.5.13, 5.5.20 - 5.5.22, 5.5.29 - 5.5.30, 5.5.36, 5.6.13, 5.6.15, 5.6.23, 7.0.6, 7.0.10, 7.0.12
Now:18:51:50 18:51:37 Not Old Enough 7187 18:38:50 Not Old Enough 6420 17:11:50 Not Old Enough 1200 16:46:50 Old enough -300
Output for 5.5.31, 5.5.38, 5.6.30
Now:18:51:49 18:51:37 Not Old Enough 7188 18:38:50 Not Old Enough 6421 17:11:50 Not Old Enough 1201 16:46:50 Old enough -299
Output for 5.2.0 - 5.2.17
Now:18:51:49 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/UeYlg on line 4
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'Datetime' not found in /in/UeYlg on line 12
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Cannot instantiate non-existent class: datetime in /in/UeYlg on line 12
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: datetime in /in/UeYlg on line 12

preferences:
271.31 ms | 401 KiB | 455 Q