If it is safe to assume that your $monthNames array has less than 26 elements, then the following works (though this is definitely a "hack" - I'll offer another answer if I can think of something which deserves to be called "elegant"):
<?php
$text = 'january 3 february 7 xyz';
print 'original string=[' . $text . "]\n";
$monthNames = array(
'january' => 1,
'jan' => 1,
'february' => 2,
'feb' => 2
// ... presumably there are some more array elements here...
);
// Map each monthNames key to a capital letter:
$i = 65; // ASCII code for 'A'
$mmap = array();
foreach (array_keys($monthNames) as $m) {
$c = chr($i);
$mmap[$c] = $m;
$i += 1;
}
// Strip out capital letters first:
$text1 = preg_replace('/[A-Z]+/', "", $text);
// Replace each month name with its letter:
$text2 = str_replace(array_keys($monthNames), array_keys($mmap), $text1);
// Filter out everything that is not allowed:
$text3 = preg_replace('/[^0-9,\.\-A-Z]/', "", $text2);
// Restore the original month names:
$text4 = str_replace(array_keys($mmap), array_keys($monthNames), $text3);
print 'filtered string=[' . $text4 . "]\n";
?>
NOTES:
- If you've got more than 26 strings to exclude from filtering, then you can write code to exploit the same idea, but IMO it gets considerably harder to make said code understandable by humans (or by me, at any rate).
- You can of course adjust the preg_replace() pattern to leave whitespaces alone if you decide that you really do want them after all.
strtotime()php.net/manual/en/function.strtotime.php – Petah Oct 26 '11 at 0:11