vote up 1 vote down star

If you have a $start_date and $end_date, how can you check if a date given by the user falls within that range?

e.g.

$start_date = '2009-06-17';

$end_date = '2009-09-05';

$date_from_user = '2009-08-28';

At the moment the dates are strings, would it help to convert them to timestamp integers?

flag

77% accept rate
It would help, then you'd have access to any date manipulation functions there are. – ChrisF Jun 10 at 16:22
Just becarefull with the timestamp limitation as Unix timestamps start at the epoch, which is January 1, 1970 (1970-01-01), so you could have funny behaviour for testing dates before 1970. – Shadi Almosri Jun 10 at 16:26
@Shadi You know there's such thing as NEGATIVE numbers, right? – fiXedd Jun 11 at 6:33

6 Answers

vote up 5 vote down check

Converting them to timestamps is the way to go alright, using strtotime, e.g.

$start_date = '2009-06-17';

$end_date = '2009-09-05';

$date_from_user = '2009-08-28';

check_in_range($start_date, $end_date, $date_from_user);


function check_in_range($start_date, $end_date, $date_from_user)
{
  // Convert to timestamp
  $start_ts = strtotime($start_date);
  $end_ts = strtotime($end_date);
  $user_ts = strtotime($date_from_user);

  // Check that user date is between start & end
  return (($user_ts >= $start_ts) && ($user_ts <= $end_ts));
}
link|flag
vote up 1 vote down

In the format you've provided, assuming the user is smart enough to give you valid dates, you don't need to convert to a date first, you can compare them as strings.

link|flag
By this point in the code the dates have already been validated – htxt Jun 10 at 16:30
vote up 7 vote down

No, it's not necessary to convert to timestamp to do the comparison, given that the strings are validated as dates in 'YYYY-MM-DD' canonical format.

This test will work:

( ( $date_from_user >= $start_date ) && ( $date_from_user <= $end_date ) )

given:

$start_date     = '2009-06-17';
$end_date       = '2009-09-05';
$date_from_user = '2009-08-28';

NOTE: comparing strings allows for "non-valid" dates e.g. '2009-13-32' and for weirdly formatted strings '2009/3/3', such that the string comparison is not equivalent to a date or timestamp comparison.

[ADDENDUM]

If you do go for the php timestamp conversion, be aware of the limitations.

On some platforms, php does not support timestamp values earlier than 1970-01-01 and/or later than 2038-01-19. (That's the nature of the unix timestamp 32-bit integer.) Later versions pf php (5.3?) are supposed to address that.

The timezone can also be an issue, if you aren't careful to use the same timezone when converting from string to timestamp and from timestamp back to string.

HTH

link|flag
This one is interesting. – Ionut G. Stan Jun 10 at 16:29
1  
Although without casting you could run into problems if the values of the $date_from_user, or $start_date, or $end_date are not dates.. i.e. $end_date = 'Balh Blah'.. will definitely not work correctly – Miky D Jun 10 at 16:29
@spencer7593, do you have some references for this behavior? – Ionut G. Stan Jun 10 at 16:35
1  
You could use checkdate() to validate – htxt Jun 10 at 17:08
vote up 0 vote down
$startDatedt = strtotime($start_date)
$endDatedt = strtotime($end_date)
$usrDatedt = strtotime($date_from_user)

if( $usrDatedt >= $startDatedt && $usrDatedt <= $endDatedt)
{
   //..falls within range
}
link|flag
That will not include any exact matches to the start date or end date – TheTXI Jun 10 at 16:25
thx. typo. i fixed code. – Stan R. Jun 10 at 16:29
OP didn't ask for inclusive matches. – fiXedd Jun 11 at 6:36
vote up 0 vote down

Convert both dates to timestamps then do

pseudocode:

if date_from_user > start_date && date_from_user < end_date
    return true
link|flag
You might want to edit it so that you also include start_date and end_date in the range. Right now if date_from_user equals either, it will not be counted. – TheTXI Jun 10 at 16:24
The OP didn't specify inclusive or exclusive ranges, so I'll leave it up to them to pick which strategy to use – Glen Jun 10 at 16:27
vote up 0 vote down

Convert them into dates or timestamp integers and then just check of $date_from_user is <= $end_date and >= $start_date

link|flag
Could you clarify 'convert them into dates'? How would you do that? I thought PHP has no date type? – htxt Jun 10 at 16:25

Your Answer

Get an OpenID
or

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