How to check if a date is in a given range?

145,435

Solution 1

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));
}

Solution 2

Use the DateTime class if you have PHP 5.3+. Easier to use, better functionality.

DateTime internally supports timezones, with the other solutions is up to you to handle that.

<?php    
/**
 * @param DateTime $date Date that is to be checked if it falls between $startDate and $endDate
 * @param DateTime $startDate Date should be after this date to return true
 * @param DateTime $endDate Date should be before this date to return true
 * return bool
 */
function isDateBetweenDates(DateTime $date, DateTime $startDate, DateTime $endDate) {
    return $date > $startDate && $date < $endDate;
}

$fromUser = new DateTime("2012-03-01");
$startDate = new DateTime("2012-02-01 00:00:00");
$endDate = new DateTime("2012-04-30 23:59:59");

echo isDateBetweenDates($fromUser, $startDate, $endDate);

Solution 3

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 like this does allow for "non-valid" dates e.g. (December 32nd ) '2009-13-32' and for weirdly formatted strings '2009/3/3', such that a string comparison will NOT be equivalent to a date or timestamp comparison. This works ONLY if the date values in the strings are in a CONSISTENT and CANONICAL format.

EDIT to add a note here, elaborating on the obvious.

By CONSISTENT, I mean for example that the strings being compared must be in identical format: the month must always be two characters, the day must always be two characters, and the separator character must always be a dash. We can't reliably compare "strings" that aren't four character year, two character month, two character day. If we had a mix of one character and two character months in the strings, for example, we'd get unexpected result when we compared, '2009-9-30' to '2009-10-11'. We humanly see "9" as being less than "10", but a string comparison will see '2009-9' as greater than '2009-1'. We don't necessarily need to have a dash separator characters; we could just as reliably compare strings in 'YYYYMMDD' format; if there is a separator character, it has to always be there and always be the same.

By CANONICAL, I mean that a format that will result in strings that will be sorted in date order. That is, the string will have a representation of "year" first, then "month", then "day". We can't reliably compare strings in 'MM-DD-YYYY' format, because that's not canonical. A string comparison would compare the MM (month) before it compared YYYY (year) since the string comparison works from left to right.) A big benefit of the 'YYYY-MM-DD' string format is that it is canonical; dates represented in this format can reliably be compared as strings.

[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

Solution 4

$startDatedt = strtotime($start_date)
$endDatedt = strtotime($end_date)
$usrDatedt = strtotime($date_from_user)

if( $usrDatedt >= $startDatedt && $usrDatedt <= $endDatedt)
{
   //..falls within range
}

Solution 5

$start_date="17/02/2012";
$end_date="21/02/2012";
$date_from_user="19/02/2012";

function geraTimestamp($data)
{
    $partes = explode('/', $data); 
    return mktime(0, 0, 0, $partes[1], $partes[0], $partes[2]);
}


$startDatedt = geraTimestamp($start_date); 
$endDatedt = geraTimestamp($end_date);
$usrDatedt = geraTimestamp($date_from_user);

if (($usrDatedt >= $startDatedt) && ($usrDatedt <= $endDatedt))
{ 
    echo "Dentro";
}    
else
{
    echo "Fora";
}
Share:
145,435
meleyal
Author by

meleyal

Updated on June 21, 2020

Comments

  • meleyal
    meleyal almost 4 years

    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?

  • TheTXI
    TheTXI almost 15 years
    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.
  • meleyal
    meleyal almost 15 years
    Could you clarify 'convert them into dates'? How would you do that? I thought PHP has no date type?
  • TheTXI
    TheTXI almost 15 years
    That will not include any exact matches to the start date or end date
  • Glen
    Glen almost 15 years
    The OP didn't specify inclusive or exclusive ranges, so I'll leave it up to them to pick which strategy to use
  • Mike Dinescu
    Mike Dinescu almost 15 years
    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
  • meleyal
    meleyal almost 15 years
    By this point in the code the dates have already been validated
  • user5880801
    user5880801 almost 15 years
    @spencer7593, do you have some references for this behavior?
  • meleyal
    meleyal almost 15 years
    You could use checkdate() to validate
  • Jeremy Logan
    Jeremy Logan almost 15 years
    OP didn't ask for inclusive matches.
  • Andy Ibanez
    Andy Ibanez almost 12 years
    Does this work with time? I mean, I have two times in HH:MM:SS format and I want to know if any given time is between these two.
  • spencer7593
    spencer7593 almost 12 years
    @Sergio: yes, the same string comparison works for time values, as long as the strings are in a standard canonical format (i.e. 24 hour clock, midnight represented as '00:00:00', the last second before midnight represented as '23:59:59'. To be guaranteed that the string comparison will "work", you need to guarantee that the string representations of the time value are in a guaranteed format.
  • Raptor
    Raptor about 9 years
    version note: iterator_to_array() is available since PHP 5.1
  • oldwizard
    oldwizard about 9 years
    You would likely transform this into a function that takes three parameters, and return a boolean. Should be very easy to test?
  • Salman A
    Salman A almost 9 years
    I would say that the function should return true for 2012-02-01 is between 2012-02-01 ... 2014-04-30 23:59:59.
  • zanderwar
    zanderwar over 7 years
    I always favor DateTime over the sketchy time functions that PHP offers out-of-the-box. To include start and end date within this check very simply change the return value to return $date >= $startDate && $date <= $endDate;
  • GeneCode
    GeneCode about 5 years
    Works great. Thanks.
  • PJ Brunet
    PJ Brunet over 4 years
    @zanderway are you saying the > defaults to a "day" comparison and not a seconds comparison? $startDate has seconds specified, so I'm wondering if the ">=" is really necessary?