How to find the time elapsed since a date time stamp like 2010-04-28 17:25:43, final out put text should be like xx Minutes Ago/xx Days Ago
|
|
Most of the answers seem focused around converting the date from a string to time. It seems you're mostly thinking about getting the date into the '5 days ago' format, etc.. right? This is how I'd go about doing that:
I haven't tested that, but it should work. The result would look like
or
cheers |
|||||||||||
|
|
Want to share php function which results in grammetically correct facebook like human reable time format. Example: echo get_time_ago(strtotime('now')); Result: less than 1 minute ago
|
|||||||||
|
|
One option that'll work with any version of PHP is to do what's already been suggested, which is something like this:
That will give you the age in seconds. From there, you can display it however you wish. One problem with this approach, however, is that it won't take into account time shifts causes by DST. If that's not a concern, then go for it. Otherwise, you'll probably want to use the diff() method in the DateTime class. Unfortunately, this is only an option if you're on at least PHP 5.3. |
|||
|
|
I think I have a function which should do what you want:
Simply apply it to the difference between
|
|||
|
Wrote my own
|
|||||||||||
|
|
Convert [saved_date] to timestamp. Get current timestamp. current timestamp - [saved_date] timestamp. Then you can format it with date(); You can normally convert most date formats to timestamps with the strtotime() function. |
|||
|
|
To find out time elapsed i usually use example: The value of |
||||
|
|
|
If you use the php Datetime class you could use:
|
||||
|