Jump to content

[SOLVED] php date between


Roy Barten

Recommended Posts

Hello,

 

now i have another question.

 

I have 3 dates. A startdate, enddate and a date to compare with. I have to check if date3 is between the other 2 dates. For example:

 

startdate:

2009-03-01 12:00

 

enddate:

2009-03-03 14:00

 

date3:

2009-03-02 13:00

 

date3 is in this example between the start and enddate, but how do I check this in PHP code?

Link to comment
https://forums.phpfreaks.com/topic/145048-solved-php-date-between/
Share on other sites

<?php
$s_date = strtotime("2009-03-01 12:00");

$e_date = strtotime("2009-03-03 14:00");

$date = strtotime("2009-03-02 13:00");

if($date > $s_date && $date < $e_date)
{
    print "Date is between start and end";
}
else
{
    print "Date is outside start and end";
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.