I have two dates of the form:
Start Date: 2007-03-24
End Date: 2009-06-26
Now I need to find the difference between these two in the following form:
2 years, 3 months and 2 days
How can I do this in PHP?
|
|
You can use strtotime() to convert two dates to unix time and then calculate the number of seconds between them. From this it's rather easy to calculate different time periods.
Edit: Obviously the preferred way of doing this is like described by jurka below. My code is generally only recommended if you don't have PHP 5.3 or better. Several people in the comments have pointed out that the code above is only an approximation. I still believe that for most purposes that's fine, since the usage of a range is more to provide a sense of how much time has passed or remains rather than to provide precision - if you want to do that, just output the date. Despite all that, I've decided to address the complaints. If you truly need an exact range but haven't got access to PHP 5.3, use the code below (it should work in PHP 4 as well). This is a direct port of the code that PHP uses internally to calculate ranges, with the exception that it doesn't take daylight savings time into account. That means that it's off by an hour at most, but except for that it should be correct.
|
|||||||||||||||||||||
|
|
I suggest to use DateTime and DateInterval objects.
read more php DateTime::diff manual EDIT (by panique, June 2012):
|
|||||||||||||||||||||
|
|
View Hours and Minuts and Seconds..
|
||||
|
The best course of action is using PHP's
The After both objects were instantiated, you substract one from the other with
To format the
All that's left now is to call our function on the
And we get the correct result:
The complete code used to achieve the goal:
|
|||||||
|
|
I don't know if you are using a PHP framework or not, but a lot of PHP frameworks have date/time libraries and helpers to help keep you from reinventing the wheel. For example CodeIgniter has the
|
||||
|
|
|
I voted for jurka's answer as that's my favorite, but I have a pre-php.5.3 version... I found myself working on a similar problem - which is how I got to this question in the first place - but just needed a difference in hours. But my function solved this one pretty nicely as well and I don't have anywhere in my own library to keep it where it won't get lost and forgotten, so... hope this is useful to someone.
And the test:
And the result:
I got the original idea from here, which I modified for my uses (and I hope my modification will show on that page as well). You can very easily remove intervals you don't want (say "week") by removing them from the |
|||||||
|
|
||||
|
|
|
Take a look at the following link, This is the best answer i've found so far.. :)
|
|||||||||
|
|
You can use the
function which returns an array containing all elements of the date/time supplied:
If your start and end dates are in string format then use
before the above code |
|||||
|
|
||||
|
|
|
i have some simple logic for that
|
|||
|
|
|
I found your article on the following page, which contains a number of references for Php Date Time calculations. Calculate the difference between two Dates (and time) using Php. The following page provides a range of different methods (7 in total) for performing date / time calculations using Php, to determine the difference in time (hours, munites), days, months or years between two dates. See Php Date Time – 7 Methods to Calculate the Difference between 2 dates. |
|||
|
|
|
I'm using the following function which I wrote, when PHP 5.3 (respectively date_diff()) is not available:
|
|||
|
|
|
An easy function
use like
|
|||
|
|
|
Here you find a working function to do that: http://www.developertutorials.com/tutorials/php/calculating-difference-between-dates-php-051018/page1.html You could find it searching in google the title of your question. |
|||
|
|
|
Some time Before I wrote a format_date function as this gives many option how you want your date
|
|||
|
|
|
To overcome that, I coded the following (improved from @enobrev answer):
It runs two loops; the first one deals with the relative intervals (years and months) via brute-forcing, and the second one computes the additional absolute intervals with simple arithmetic (so it's faster):
|
|||
|
|
|
You can also use following code to return date diff by round fractions up $date1 = $duedate; // assign due date echo $date2 = date("Y-m-d"); // current date $ts1 = strtotime($date1); $ts2 = strtotime($date2); $seconds_diff = $ts1 - $ts2; echo $datediff = ceil(($seconds_diff/3600)/24); // return in days If you use floor method of php instead of ceil it will return you the round fraction down. Please check the difference here, some times if your staging servers timezone is different then the live site time zone in that case you may get different results so change the conditions accordingly. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.