<?php
function standard_date_format($str) {
preg_match_all('/(\d{1,2}) (\w+) (\d{4})/', $str, $matches);
foreach ($matches[1] as $day) { $days [] = $day; }
foreach ($matches[2] as $month) { $months [] = $month; }
foreach ($matches[3] as $year) { $years [] = $year; }
$all_months = array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
for ($i = sizeof($days) - 1; $i >= 0; $i --) {
$month = array_search($months[$i], $all_months) + 1;
$month = strlen($month) < 2 ? '0'.$month : $month;
$results [] = $years[$i] . '-' . $month . '-' . $days[$i];
}
return $results;
}
$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 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.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
- Array
(
[0] => 2003-03-16
)
Array
(
[0] => 2008-07-10
[1] => 2006-05-10
)
preferences:
81.12 ms | 408 KiB | 5 Q