3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dates = array( '23.5.14', '23.05.14', '23.05.2014', '5/23/14', '05/23/14', '05/23/2014',);foreach ($dates as $date) { echo $date . "\t\t=>\t"; try { $temp_date = new DateTime($date); echo $temp_date->format('Y-m-d'); } catch (Exception $e) { echo 'error'; } echo "\n";}
Output for git.master, git.master_jit, rfc.property-hooks
23.5.14 => 2014-10-31 23.05.14 => 2014-10-31 23.05.2014 => 2014-05-23 5/23/14 => 2014-05-23 05/23/14 => 2014-05-23 05/23/2014 => 2014-05-23

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:
49.01 ms | 401 KiB | 8 Q