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', 'd/m/Y H:i:s', '06-11-1992'));
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.6
Fatal error: Uncaught Exception: DateTime::__construct(): Failed to parse time string (06-11-92) at position 7 (2): Unexpected character in /in/qf513:13 Stack trace: #0 /in/qf513(13): DateTime->__construct('06-11-92', Object(DateTimeZone)) #1 /in/qf513(18): converteData('d-m-y', 'd/m/Y H:i:s', '06-11-1992') #2 {main} thrown in /in/qf513 on line 13
Process exited with code 255.
Output for 5.6.18 - 5.6.28
Fatal error: Call to a member function format() on boolean in /in/qf513 on line 15
Process exited with code 255.
Output for 5.2.7 - 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 (06-11-92) at position 7 (2): Unexpected character' in /in/qf513:13 Stack trace: #0 /in/qf513(13): DateTime->__construct('06-11-92', Object(DateTimeZone)) #1 /in/qf513(18): converteData('d-m-y', 'd/m/Y H:i:s', '06-11-1992') #2 {main} thrown in /in/qf513 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.37
Fatal error: Call to a member function format() on a non-object in /in/qf513 on line 15
Process exited with code 255.
Output for 5.2.0 - 5.2.6
string(19) "06/11/1992 00:00:00"
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTimeZone' not found in /in/qf513 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/qf513 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/qf513 on line 8

preferences:
188.92 ms | 401 KiB | 214 Q