3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dates = array( '23.5.14', '23.05.14', '23.05.2014', '30.6.14', '30.06.14', '30.06.2014', '5/23/14', '05/23/14', '05/23/2014',);foreach ($dates as $date_in) { try { $temp_date = new DateTime($date_in); $date_out = $temp_date->format('Y-m-d'); } catch (Exception $e) { $date_out = 'error'; } printf('%1$ 12s => %2$s', $date_in, $date_out); 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 30.6.14 => 2014-06-30 30.06.14 => 2014-06-30 30.06.2014 => 2014-06-30 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:
54.44 ms | 401 KiB | 8 Q