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

How to find number of days between two dates using php.

for this i have test the answer of:

Calculate number of days between two dates in PHP [closed] (3)

on this forum.

but it does not work.

can any one help me.

share|improve this question
What format are you days in? – Tatu Ulmanen Jan 11 '10 at 8:10

8 Answers

up vote 112 down vote accepted
<?php

     $now = time(); // or your date as well
     $your_date = strtotime("2010-01-01");
     $datediff = $now - $your_date;
     echo floor($datediff/(60*60*24));

?>
share|improve this answer
1  
This kinda threw me off for a sec, and it's really anal, but it should be noted your variables have differing cases ($datediff and $dateDiff). Sorry to be a pedant! (Voted you up ;P) – erbaker Mar 8 '11 at 23:32
12  
It should also be noted that $now - $your_date could be negative. That line should read: $datediff = abs($now - $your_date); to be safe. – Andrew May 24 '11 at 16:35
2  
I think returning a negative number of days provides relevant information. And you should be using $your_date-$now, if you want a future date to return a positive integer. – Tim Mar 2 '12 at 18:49
4  
What about leap seconds? Not all days have exactly 24*60*60 seconds. This code might be sufficient for practical purposes but it's not exact in sone extremely rare edge cases. – Benjamin Brizzi Aug 1 '12 at 8:15
4  
Forget leap seconds (no, actually consider those too) but this does NOT account for Daylight Saving Time changes! It can be off by an entire day over those boundaries every year. You need to use the DateTime classes. – Levi Dec 4 '12 at 3:34
show 5 more comments

Convert your dates to unix timestamps, then substract one from the another. That will give you the difference in seconds, which you divide by 86400 (amount of seconds in a day) to give you an approximate amount of days in that range.

If your dates are in format 25.1.2010, 01/25/2010 or 2010-01-25, you can use the strtotime function:

$start = strtotime('2010-01-25');
$end = strtotime('2010-02-20');

$days_between = ceil(abs($end - $start) / 86400);

Using ceil rounds the amount of days up to the next full day. Use floor instead if you want to get the amount of full days between those two dates.

If your dates are already in unix timestamp format, you can skip the converting and just do the $days_between part. For more exotic date formats, you might have to do some custom parsing to get it right.

share|improve this answer
2  
+1 for examples. – zipcodeman Jan 11 '10 at 8:16
Nice and succinct – oodavid May 11 '12 at 16:38
2  
What about DST? – toon81 Feb 6 at 10:38

If you're using PHP 5.3 >, this is by far the most accurate way of calculating the difference:

$date1 = new DateTime("2010-07-06");
$date2 = new DateTime("2010-07-09");

$diff = $date2->diff($date1)->format("%a");
share|improve this answer

If you have the times in seconds (I.E. unix time stamp) , then you can simply subtract the times and divide by 86400 (seconds per day)

share|improve this answer
What about DST? – toon81 Feb 6 at 10:43

Used this :)

$days = (strtotime($endDate) - strtotime($startDate)) / (60 * 60 * 24);
print $days;

Now it works

share|improve this answer
Now accept an answer. – zipcodeman Jan 11 '10 at 8:18
Muhammad, this is not a forum. You shouldn't post answers to your own question unless someone else was unable to answer it for you, which is not the case in this situation. You'll want to make use of the comment feature to get clarification on individual answers. Also, you can always edit your original question. – Justin Johnson Jan 11 '10 at 8:21
$datediff = floor(strtotime($date1)/(60*60*24)) - floor(strtotime($date2)/(60*60*24));

and, if needed:

$datediff=abs($datediff);
share|improve this answer
    // Change this to the day in the future
$day = 15;

// Change this to the month in the future
$month = 11;

// Change this to the year in the future
$year = 2012;

// $days is the number of days between now and the date in the future
$days = (int)((mktime (0,0,0,$month,$day,$year) - time(void))/86400);

echo "There are $days days until $day/$month/$year";
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.