3v4l.org

run code in 300+ PHP versions simultaneously
<?php function check($dateAdded,$now){ $secondsInPast = $now->getTimestamp() - $dateAdded->getTimestamp(); if($secondsInPast > 60*60*2){ echo $dateAdded->format('H:i:s'). " Old enough\n"; } else { echo $dateAdded->format('H:i:s'). " Not Old Enough\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.4.0 - 5.4.17, 5.4.19 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.20, 7.1.22 - 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.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Now:18:10:00 18:09:47 Not Old Enough 17:57:00 Not Old Enough 16:30:00 Not Old Enough 16:05:00 Old enough
Output for 7.3.32 - 7.3.33, 8.0.13
Now:16:10:00 16:09:47 Not Old Enough 15:57:00 Not Old Enough 14:30:00 Not Old Enough 14:05:00 Old enough
Output for 7.1.21
Now:18:10:01 18:09:48 Not Old Enough 17:57:01 Not Old Enough 16:30:01 Not Old Enough 16:05:01 Old enough
Output for 5.4.18
Now:18:09:59 18:09:46 Not Old Enough 17:56:59 Not Old Enough 16:29:59 Not Old Enough 16:04:59 Old enough
Output for 5.3.20 - 5.3.29
Now:18:10:07 18:09:54 Not Old Enough 17:57:07 Not Old Enough 16:30:07 Not Old Enough 16:05:07 Old enough
Output for 5.3.0 - 5.3.19
Now:18:10:08 18:09:55 Not Old Enough 17:57:08 Not Old Enough 16:30:08 Not Old Enough 16:05:08 Old enough
Output for 5.2.0 - 5.2.17
Now:18:10:09 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/hggYR on line 3
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/hggYR on line 10
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/hggYR on line 10
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: datetime in /in/hggYR on line 10

preferences:
248.9 ms | 401 KiB | 456 Q