Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.";

share|improve this question
Are you trying to check if today's year is between those years? Or is it an arbitrary year? – Rob Hruska Oct 28 '10 at 19:29
1  
More detail please. Are you given a "year" or "timestamp" or "string representation of date" or what? – KennyTM Oct 28 '10 at 19:29
1  
Your update didn't really clarify the question much. Is your string formatted in a certain way? Is it just an arbitrary string? Why do you have to use preg_match instead of strtotime()? Some examples would help. – Rob Hruska Oct 28 '10 at 19:32

3 Answers

up vote 3 down vote accepted

If the string is already formatted in a way that can be consumed by getdate(), the other answers would be the best solution.

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.

/(19[5-9][0-9]|20(0[0-9]|10))/

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.

share|improve this answer
1  
+1 for regex and issues with using a regex... – ircmaxell Oct 28 '10 at 19:42
ah right - i can leave the {1} away... well.. ;) – Tobias Oct 28 '10 at 19:46

Assuming you have a timestamp:

$date = getdate($timestamp);
if ($date['year'] >= 1950 && $date['year'] <= 2010)
  return 'good';
share|improve this answer
and if you dont have a timestamp you get one with strtotime or use date_parse – Gordon Oct 28 '10 at 19:32
for regular number is => ([0-9]{1,}) – somewhereInPHP Oct 28 '10 at 19:33
$date = getdate( $timestamp );
if( (int)$date['year'] >= 1950 && (int)$date['year'] <= date('Y') ) {
   return 'good';
}

:P

if( preg_match( '/^(19[5-9]{1}[0-9]{1}|20(0[0-9]{1}|10))$/', $i ) ) {}
// tested - works. 1950-2010
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.