3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dutch_date = "donderdag 27 maart 2014 00:30"; $converted_date = array(); $pattern = "#(?P<day_of_the_week>\w+)\ (?P<day>\d+)\ (?P<month>\w+)\ (?P<year>\d+)\ (?P<hour>\d+):(?P<minute>\d+)#s"; preg_match($pattern,$dutch_date, $converted_date); $date = ""; $date .= $converted_date["year"] . "-"; $datemap = array("januari"=>"01", "februari"=>"02", "maart"=>"03", "april"=>"04", "mei"=>"05", "juni"=>"06", "juli"=>"07", "augustus"=>"08", "september"=>"09", "oktober"=>"10", "november"=>"11", "december"=>"12"); $date .= $datemap[$converted_date["month"]]. "-"; $date .= $converted_date["day"]. " "; $date .= $converted_date["hour"] . ":"; $date .= $converted_date["minute"] .":00"; $format = 'Y-m-d H:i:s'; $date = DateTime::createFromFormat($format, $date); print_r($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.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
DateTime Object ( [date] => 2014-03-27 00:30:00.000000 [timezone_type] => 3 [timezone] => Europe/Amsterdam )
Output for 7.3.32 - 7.3.33, 8.0.13
DateTime Object ( [date] => 2014-03-27 00:30:00.000000 [timezone_type] => 3 [timezone] => UTC )
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.29, 5.5.0 - 5.5.13
DateTime Object ( [date] => 2014-03-27 00:30:00 [timezone_type] => 3 [timezone] => Europe/Amsterdam )
Output for 5.2.10 - 5.2.17
Fatal error: Call to undefined method DateTime::createFromFormat() in /in/lF1TH on line 16
Process exited with code 255.
Output for 5.2.0 - 5.2.9
Fatal error: Call to undefined method DateTime::createfromformat() in /in/lF1TH on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Class 'DateTime' not found in /in/lF1TH on line 16
Process exited with code 255.
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Undefined class name 'datetime' in /in/lF1TH on line 16
Process exited with code 255.
Output for 4.3.2
Warning: Compilation failed: two named groups have the same name at offset 34 in /in/lF1TH on line 6 Notice: Undefined index: year in /in/lF1TH on line 8 Notice: Undefined index: month in /in/lF1TH on line 11 Notice: Undefined index: in /in/lF1TH on line 11 Notice: Undefined index: day in /in/lF1TH on line 12 Notice: Undefined index: hour in /in/lF1TH on line 13 Notice: Undefined index: minute in /in/lF1TH on line 14 Fatal error: Undefined class name 'datetime' in /in/lF1TH on line 16
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Warning: Compilation failed: two named groups have the same name at offset 34 in /in/lF1TH on line 6 Notice: Undefined index: year in /in/lF1TH on line 8 Notice: Undefined index: month in /in/lF1TH on line 11 Notice: Undefined index: in /in/lF1TH on line 11 Notice: Undefined index: day in /in/lF1TH on line 12 Notice: Undefined index: hour in /in/lF1TH on line 13 Notice: Undefined index: minute in /in/lF1TH on line 14 Fatal error: Undefined class name 'datetime' in /in/lF1TH on line 16

preferences:
230.47 ms | 402 KiB | 370 Q