3v4l.org

run code in 300+ PHP versions simultaneously
<?php //the dutch date $dutch_date = "donderdag 27 maart 2014 00:30"; //split it in usable parts $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); //create the empty date, we'll store our date in this variable in "D, d F Y H:i:s GMT" format $date = ""; //create the "D, "-part $daymap = array("maandag" => "Mon", "dinsdag"=>"Tue", "woensdag"=>"Wed", "donderdag"=>"Thu", "vrijdag"=>"Fri", "zaterdag"=>"Sat", "zondag"=>"Sun"); $date .= $daymap[$converted_date["day_of_the_week"]].", "; //create the "d " part $date .= $converted_date["day"]. " "; //create the "F " part $datemap = array("januari"=>"Jan", "februari"=>"Feb", "maart"=>"Mar", "april"=>"Apr", "mei"=>"May", "juni"=>"Jun", "juli"=>"Jul", "augustus"=>"Aug", "september"=>"Sep", "oktober"=>"Okt", "november"=>"Nov", "december"=>"Dec"); $date .= $datemap[$converted_date["month"]]. " "; //create the "Y " part $date .= $converted_date["year"] . " "; //create the "H:" part if ($converted_date["hour"] == "00"){ $converted_date["hour"] = "23"; } elseif ($converted_date["hour"] == "10"){ $converted_date["hour"] = "09"; } elseif ($converted_date["hour"] == "20"){ $converted_date["hour"] = "19"; } else{ $converted_date["hour"] = substr($converted_date["hour"], 0, 1).(substr($converted_date["hour"], 0, 1) - 1); } $date .= $converted_date["hour"] . ":"; //create the "i:s" part $date .= $converted_date["minute"] .":00 GMT"; echo $date; ?>
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 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.18, 8.3.0 - 8.3.6
Thu, 27 Mar 2014 23:30:00 GMT
Output for 4.3.0 - 4.3.2
Warning: Compilation failed: two named groups have the same name at offset 34 in /in/E1f7u on line 8 Notice: Undefined index: day_of_the_week in /in/E1f7u on line 14 Notice: Undefined index: in /in/E1f7u on line 14 Notice: Undefined index: day in /in/E1f7u on line 16 Notice: Undefined index: month in /in/E1f7u on line 20 Notice: Undefined index: in /in/E1f7u on line 20 Notice: Undefined index: year in /in/E1f7u on line 22 Notice: Undefined index: hour in /in/E1f7u on line 24 Notice: Undefined index: hour in /in/E1f7u on line 26 Notice: Undefined index: hour in /in/E1f7u on line 28 Notice: Undefined index: hour in /in/E1f7u on line 31 Notice: Undefined index: hour in /in/E1f7u on line 31 Notice: Undefined index: minute in /in/E1f7u on line 35 , -1::00 GMT

preferences:
295.62 ms | 403 KiB | 460 Q