3v4l.org

run code in 300+ PHP versions simultaneously
<?php $time1 = '2014-08-26 14:35:29'; $time2 = '2014-08-26 14:36:29'; $strtotime1 = strtotime($time1); $strtotime2 = strtotime($time2); echo $strtotime1; echo "\n"; echo $strtotime2; echo "\n"; echo $strtotime2 - $strtotime1; $date = new DateTime('2014-08-26 14:36:29'); echo "\n"; var_dump($date); echo "\n"; echo time() - $date;
Output for 5.4.30 - 5.4.45, 5.5.14 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0
1409056529 1409056589 60 object(DateTime)#1 (3) { ["date"]=> string(26) "2014-08-26 14:36:29.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } Notice: Object of class DateTime could not be converted to int in /in/2UfK7 on line 19 1409079934
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.29, 5.5.0 - 5.5.13
1409056529 1409056589 60 object(DateTime)#1 (3) { ["date"]=> string(19) "2014-08-26 14:36:29" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } Notice: Object of class DateTime could not be converted to int in /in/2UfK7 on line 19 1409079934
Output for 5.2.0 - 5.2.17
1409056529 1409056589 60 object(DateTime)#1 (0) { } Notice: Object of class DateTime could not be converted to int in /in/2UfK7 on line 19 1409079934
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
1409056529 1409056589 60 Fatal error: Class 'DateTime' not found in /in/2UfK7 on line 14
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
1409056529 1409056589 60 Fatal error: Cannot instantiate non-existent class: datetime in /in/2UfK7 on line 14
Process exited with code 255.
Output for 4.3.0 - 4.3.1
1409056529 1409056589 60 Fatal error: Cannot instantiate non-existent class: datetime in /in/2UfK7 on line 14

preferences:
159.31 ms | 401 KiB | 217 Q