3v4l.org

run code in 300+ PHP versions simultaneously
<?php function converteData($format, $to_format, $time, $timezone = null) { $version = explode('.', phpversion()); if (!$timezone) { $timezone = new DateTimeZone(date_default_timezone_get()); } if ((int)$version[0] >= 5 && (int)$version[1] >= 2 && (int)$version[2] > 17) { $datetime = DateTime::createFromFormat($format, $time, $timezone); } else { $datetime = new DateTime(date($format, strtotime($time)), $timezone); } return $datetime->format($to_format); } var_dump(converteData('d-m-Y H', 'd/m/Y H:i:s', '06-11-1992 00'));
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0
Fatal error: Uncaught Exception: DateTime::__construct(): Failed to parse time string (01-01-1970 01) at position 11 (0): Unexpected character in /in/rcQRs:13 Stack trace: #0 /in/rcQRs(13): DateTime->__construct('01-01-1970 01', Object(DateTimeZone)) #1 /in/rcQRs(18): converteData('d-m-Y H', 'd/m/Y H:i:s', '06-11-1992 00') #2 {main} thrown in /in/rcQRs on line 13
Process exited with code 255.
Output for 5.3.18 - 5.3.29, 5.4.18 - 5.4.45, 5.5.18 - 5.5.38, 5.6.18 - 5.6.28
string(19) "06/11/1992 00:00:00"
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.17, 5.4.0 - 5.4.17, 5.5.0 - 5.5.16, 5.6.0 - 5.6.17
Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): Failed to parse time string (01-01-1970 01) at position 11 (0): Unexpected character' in /in/rcQRs:13 Stack trace: #0 /in/rcQRs(13): DateTime->__construct('01-01-1970 01', Object(DateTimeZone)) #1 /in/rcQRs(18): converteData('d-m-Y H', 'd/m/Y H:i:s', '06-11-1992 00') #2 {main} thrown in /in/rcQRs on line 13
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTimeZone' not found in /in/rcQRs on line 8
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: datetimezone in /in/rcQRs on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: datetimezone in /in/rcQRs on line 8

preferences:
157 ms | 401 KiB | 217 Q