3v4l.org

run code in 300+ PHP versions simultaneously
<?php function standard_date_format($str) { preg_match_all('/(\d{1,2}) (\w+) (\d{4})/', $str, $matches); $dates = array_map("strtotime", $matches[0]); $result = array_map(function($v) {return date("Y-m-d", $v); }, $dates); return $result; } $str1 = "Company registered on 16 March 2003"; $str2 = "Activity between 10 May 2006 an 10 July 2008 - no changes."; print_r(standard_date_format($str1)); print_r(standard_date_format($str2));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => 2003-03-16 ) Array ( [0] => 2006-05-10 [1] => 2008-07-10 )

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:
31.21 ms | 409 KiB | 6 Q