How can I convert a timestamp difference between 2 dates ( $diff = abs(strtotime($date2) - strtotime($date1)); ) to months and days quantity (ouput: $res = 4.05 -> 4 months and 5 days)?
Thanks.
feedback
|
|
Something like this would possibly work. My maths may be a bit off.
| |||||
feedback
|
|
You can't approach it like that as month length varies - unless you want to make an assumption based on average month length. If you want the correct difference you need to use the actual dates then you can use php date diff - http://www.php.net/manual/en/datetime.diff.php | |||
|
feedback
|
|
For PHP 5.3 you might want to use For lower versions you might want to use something like: (Simple solution, not fastest or best)
//Disclaimer: untested | |||||
feedback
|
|
The biggest problem you are going to face here is defining months. Are you going to use 4 weeks = 1 month, 30 days = 1 month, etc... I would be tempted to either leave the figure as a number of days, or at most, convert to weeks and days | |||
|
feedback
|
|
Timestamp is actually the number of seconds since Unix Epoch i.e. 1 Jan 1970. So differences in timestamps is actually seconds. So to convert seconds into days you just need to divide it by number of seconds in a day i.e. $Timestamp/(24x60x60). Same for the month $Timestamp/(24x60x60x30) | |||
|
feedback
|
|
I don't think this is available in php. So you will have to use integer division (or normal division) and modulo operator. For instance (example uses hours instead of ms but it is the same trick repeated):
This will give $days = 1 and $hours = 3 As stated in other replies. Finding months is harder because the amount of days per month isn't fixed. | |||||||
feedback
|
|
You might want to take a look at DateTime.diff, as it is able to express differences you would expect from a human when comparing months (like 01.01.2010 to 01.03.2010 is a difference of (exactly) three months). | |||
|
feedback
|
|
You can calculate date difference in day, with a function like this
The make an assumption an average month is 30 days and calculate the number of months. It can be enough for some needs (displaying blog comment age, etc.) and totally unadapted for others. | ||||
|
feedback
|
|
Found a solution using MySQL to calculate the months: SELECT TIMESTAMPDIFF(MONTH,'{$start_time_str}','{$end_time_str}') AS m Thanks to all involved. | |||||||
feedback
|