How do I check with preg_match if string contains year which is between 1950 and 2010 ?
example:
$string = "I was born in 1986 year.";
|
How do I check with preg_match if string contains year which is between 1950 and 2010 ? example: $string = "I was born in 1986 year."; |
||||
|
If the string is already formatted in a way that can be consumed by If the string is just some random text which might or might not contain a date, you'd need to use a regex to find those numbers.
Of course, you have no guarantee that the numbers matched this way is actually a year. It could be 2005 pounds of steel or 1976 miles of highway. |
|||
|
Assuming you have a timestamp:
|
|||||
|
:P
|
||||
|
|
strtotime()? Some examples would help. – Rob Hruska Oct 28 '10 at 19:32