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 git.master, git.master_jit, rfc.property-hooks
Thu, 27 Mar 2014 23:30:00 GMT

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
30.34 ms | 401 KiB | 8 Q