3v4l.org

run code in 300+ PHP versions simultaneously
<?php $intervals = array( '1 second' => 1, '1 minute' => 60 * 60, '1 day' => 60 * 60 * 24, '1 year' => 60 * 60 * 24 * 365 ); foreach ($intervals as $interval => $expected) { $zeroDate = new \DateTime('@0'); var_dump($zeroDate->getTimestamp()); $zeroDate->add(\DateInterval::createFromDateString($interval)); echo sprintf("found %s expected %s\n", $zeroDate->getTimestamp(), $expected); }
Output for 5.3.0 - 5.3.8, 5.4.8 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
int(0) found 1 expected 1 int(0) found 60 expected 3600 int(0) found 86400 expected 86400 int(0) found 31536000 expected 31536000
Output for 5.3.9 - 5.3.29, 5.4.0 - 5.4.7
int(0) found 3601 expected 1 int(0) found 3660 expected 3600 int(0) found 90000 expected 86400 int(0) found 31539600 expected 31536000
Output for 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 12 Fatal error: Call to undefined method DateTime::getTimestamp() in /in/XiYTc on line 11
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 12 Fatal error: Class 'DateTime' not found in /in/XiYTc on line 10
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 12 Fatal error: Cannot instantiate non-existent class: datetime in /in/XiYTc on line 10
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 10 Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/XiYTc on line 12 Fatal error: Cannot instantiate non-existent class: datetime in /in/XiYTc on line 10

preferences:
219.49 ms | 401 KiB | 355 Q