3v4l.org

run code in 300+ PHP versions simultaneously
<?php $one_year_ago = date('Y-m-d 0:00', strtotime("-1 year", time())); $retry_after_date = new DateTime($one_year_ago); echo 'start::'.$retry_after_date->format('Y-m-d H:i'); for ($i=5; $i < 50; $i+=5) { // $retry_after_date = DateAdd("n", 5, RetryAfterDate) $retry_after_date->add(new DateInterval('PT 5 M')); echo "\n$i::".$retry_after_date->format('Y-m-d H:i'); }
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.25, 7.3.0 - 7.3.12, 7.4.0
start::2013-03-12 00:00 Fatal error: Uncaught Exception: DateInterval::__construct(): Unknown or bad format (PT 5 M) in /in/tdaGt:8 Stack trace: #0 /in/tdaGt(8): DateInterval->__construct('PT 5 M') #1 {main} thrown in /in/tdaGt on line 8
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28
start::2013-03-12 00:00 Fatal error: Uncaught exception 'Exception' with message 'DateInterval::__construct(): Unknown or bad format (PT 5 M)' in /in/tdaGt:8 Stack trace: #0 /in/tdaGt(8): DateInterval->__construct('PT 5 M') #1 {main} thrown in /in/tdaGt on line 8
Process exited with code 255.
Output for 5.2.0 - 5.2.17
start::2013-03-12 00:00 Fatal error: Call to undefined method DateTime::add() in /in/tdaGt on line 8
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/tdaGt on line 3
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/tdaGt on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: datetime in /in/tdaGt on line 3

preferences:
164.69 ms | 401 KiB | 258 Q