3v4l.org

run code in 300+ PHP versions simultaneously
<?php $time = "2016-05-25 09:30:00"; // This is the expected timestamp considering $time is in UTC. $timestamp = 1464168600; $format = "Y-m-d H:i:s"; $date = \DateTime::createFromFormat($format, $time, new \DateTimeZone('America/Tegucigalpa')); $t = $date->format('U'); //1464190200 var_dump($timestamp, $t); if ($t !== $timestamp) { throw new \Exception('¿??¿?¿'); }
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
int(1464168600) string(10) "1464190200" Fatal error: Uncaught Exception: ¿??¿?¿ in /in/tohfa:11 Stack trace: #0 {main} thrown in /in/tohfa on line 11
Process exited with code 255.
Output for 5.5.0 - 5.5.36, 5.6.0 - 5.6.28
int(1464168600) string(10) "1464190200" Fatal error: Uncaught exception 'Exception' with message '¿??¿?¿' in /in/tohfa:11 Stack trace: #0 {main} thrown in /in/tohfa on line 11
Process exited with code 255.

preferences:
128.13 ms | 402 KiB | 220 Q