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 5.2.0 - 5.2.17, 5.3.0 - 5.3.17, 5.4.0 - 5.4.17, 5.5.0 - 5.5.17, 5.6.0 - 5.6.17, 7.0.0 - 7.0.32, 7.1.0 - 7.1.24, 7.2.0 - 7.2.12
string(19) "06/11/1992 00:00:00"
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.38
string(19) "06/11/1992 19:50:39"
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTimeZone' not found in /in/v7dWs 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/v7dWs 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/v7dWs on line 8

preferences:
208.16 ms | 401 KiB | 283 Q