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

How can I compare two dates in PHP?

In the database, the date looks like 2011-10-2.

If I wanted to compare today's date against the date in the database to see which one is greater, how would I do it?

I tried this,

$today = date("Y-m-d");
$expire = $row->expireDate //from db

if($today < $expireDate) { //do something; }

but it doesn't really work that way. What's another way of doing it?

share|improve this question

4 Answers

up vote 5 down vote accepted

in the database the date looks like this 2011-10-2

Store it in YYYY-MM-DD and then string comparison will work because '1' > '0', etc.

share|improve this answer
but what if they look like this, 2011-10-02 and 2012-02-10, for month comparison 1 > 0, but 2011-10-02 < 2012-02-10 – Davo Feb 22 at 23:26
@Davo, the comparison stops at the first character that is different. In this case, the fourth digit of '1' < '2', so you get the result you expect. – Matthew Feb 23 at 2:25
I'm sorry :), was not careful enough. – Davo Feb 23 at 7:51

If all your dates are posterior to the 1st of January of 1970, you could use something like:

$today = date("Y-m-d");
$expire = $row->expireDate //from db

$today_time = strtotime($today);
$expire_time = strtotime($expire);

if ($expire_time < $today_time) { /* do Something */ }

If you are using PHP 5 >= 5.2.0, you could use the DateTime class:

$today_dt = new DateTime($today);
$expire_dt = new DateTime($expire);

if ($expire_dt < $today_dt) { /* Do something */ }

Or something along these lines.

share|improve this answer

This might help if you're considering using DateTimes.

share|improve this answer
He's not using DateTimes. Snippet shows the date function. – zneak Oct 2 '10 at 22:27
I see that, but surely it is possible to convert a Date to a DateTime? I'm not a PHP Developer. – J Pollock Oct 2 '10 at 22:39

I would'nt do this with PHP. A database should know, what day is today.( use MySQL->NOW() for example ), so it will be very easy to compare within the Query and return the result, without any problems depending on the used Date-Types

SELECT IF(expireDate < NOW(),TRUE,FALSE) as isExpired FROM tableName
share|improve this answer
thanks but i actually use date() i dont store todays date in a db – SarmenHB Oct 3 '10 at 5:26
But you store expireDate in a db. Compare this date with NOW() – Dr.Molle Oct 3 '10 at 7:53
updated my answer with an example – Dr.Molle Oct 3 '10 at 8:00

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.