Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
PHP: producing relative date/time from timestamps

please see the example of PHP code:

<?php

$now = date("Y-m-d H:i:s");  
$comment_added = date("2012-05-25 22:10:00");  

?>

As the output, I would like to get something like this (depending on when a comment has been added):

Comment has been added 21 minutes ago.
Comment has been added 15 hours ago.
Comment has been added 2 days ago.
Comment has been added 3 months ago.
Comment has been added 4 years ago.

I would like to get a function, where it will be selected automatically. Any examples would be appreciated.

share|improve this question
It is such an obvious duplicate that I am not going to even bother flagging it. – Gajus Kuizinas Sep 8 '12 at 14:50
2  
If so, can you paste the url ? Why always people saying "it's duplicate" without pasting correct url? The whole internet will be soon one big duplicate :] – Jakub Sep 8 '12 at 14:51
See Calculating relative time. It's C# but you should have no trouble converting it to PHP, it's pretty straightforward. – Alexei Sep 8 '12 at 14:53
1  
@Guy: Obvious for you. It doesn't mean it is obvious for everyone. – Jocelyn Sep 8 '12 at 14:55

marked as duplicate by salathe, George Stocker Sep 10 '12 at 0:47

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

This should work.

<?php

$now = date("Y-m-d H:i:s");  
$comment_added = date("2012-05-25 22:10:00");

$diff = strtotime($now) - strtotime($comment_added);
if ($diff > (365*24*3600)) {
    $type = 'year';
    $value = floor($diff / (365*24*3600));
} else if ($diff > (30*24*3600)) {
    $type = 'month';
    $value = floor($diff / (30*24*3600));
} else if ($diff > (24*3600)) {
    $type = 'day';
    $value = floor($diff / (24*3600));
} else if ($diff > 3600) {
    $type = 'hour';
    $value = floor($diff / 3600);
} else if ($diff > 60) {
    $type = 'min';
    $value = floor($diff / 60);
} else {
    $type = 'sec';
    $value = $diff;
}

$plurial = '';
if ($value > 1)
{
    $plurial .= 's';
}
echo "Comment added {$value} {$type}{$plurial} ago.";

?>
share|improve this answer
Many thanks, it works! – Jakub Sep 8 '12 at 15:04

Not the answer you're looking for? Browse other questions tagged or ask your own question.