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:n:s'). " Old enough\n"; } else { echo $dateAdded->format('H:n:s'). " Not Old Enough\n"; } } $now = new Datetime('now'); echo "Now:" . $now->format('H:n:s'); 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.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.10, 5.6.13 - 5.6.34, 5.6.36 - 5.6.40, 7.0.0 - 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:10:1018:10:57 Not Old Enough 17:10:10 Not Old Enough 16:10:10 Not Old Enough 16:10:10 Old enough
Output for 7.3.32 - 7.3.33, 8.0.13
Now:16:10:1016:10:57 Not Old Enough 15:10:10 Not Old Enough 14:10:10 Not Old Enough 14:10:10 Old enough
Output for 5.6.11 - 5.6.12, 5.6.35
Now:18:10:1118:10:58 Not Old Enough 17:10:11 Not Old Enough 16:10:11 Not Old Enough 16:10:11 Old enough
Output for 5.3.15 - 5.3.29
Now:18:10:1618:10:03 Not Old Enough 17:10:16 Not Old Enough 16:10:16 Not Old Enough 16:10:16 Old enough
Output for 5.3.0 - 5.3.14
Now:18:10:1718:10:04 Not Old Enough 17:10:17 Not Old Enough 16:10:17 Not Old Enough 16:10:17 Old enough
Output for 5.2.10 - 5.2.17
Now:18:10:17 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/vjCFu on line 3
Process exited with code 255.
Output for 5.2.0 - 5.2.9
Now:18:10:18 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/vjCFu 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/vjCFu 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/vjCFu 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/vjCFu on line 10

preferences:
270.24 ms | 401 KiB | 455 Q