How to get duration in terms of minutes by subtracting a previous time stamp from the present time in PHP?
The format of time stamp is like
2009-12-05 10:35:28
I want to calculate how many minutes have passed. How to do it?
|
How to get duration in terms of minutes by subtracting a previous time stamp from the present time in PHP? The format of time stamp is like
I want to calculate how many minutes have passed. How to do it?
| |||
feedback
|
|
If you don't wanna add a library, you can do this pretty easily:
| |||
|
feedback
|
|
To do this in MySQL use the
Where | |||
|
feedback
|
|
Check out some pretty date libraries in PHP. Might have something for you. Here's one : http://www.zachleat.com/web/2008/02/10/php-pretty-date/ | |||
|
feedback
|
That will get you seconds difference. Divide by 60 for minutes elapsed. If you have any information on the time zone of the initial timestamp, however, you'd need to adjust the "now" to a more comparable time | |||
|
feedback
|
|
something like that
| |||
|
feedback
|
|
You could just use
| |||||
feedback
|
| |||||
feedback
|