i want to display the date time difference between current date and stored date (which has been stored already in database). At the time of date difference calculation, i retrieved the date value from the table and converted into time format, and then i'm trying to calculate the difference with the current date. But, not getting right answer... this is my code

$date=$row['POSTED'];
        $mydate=date('Y-m-d H:i:s',strtotime($date));
        $interval = time('Y-m-d H:i:s')-$mydate;
        echo round(abs(time($interval) / 60))." minute";

and i'm getting output like..

1314484193 minute

any suggestion and help will be appreciated !!!

link|improve this question

71% accept rate
Have you tried debugging this? Like, for instance, echoing the values of $mydate or $interval to sanity-check that they are valid? – Oli Charlesworth Aug 27 '11 at 22:40
I think you're missing a bracket in the last line. – grc Aug 27 '11 at 22:40
Also, this code won't even execute. Please post some actual code. – Oli Charlesworth Aug 27 '11 at 22:40
feedback

4 Answers

The time() function doesn't accept a parameter, so your code is wrong in at least two places.

If your database contains a date, it might be easier to cast that date using the MySQL UNIX_TIMESTAMP function. That way, the result is already a timestamp with which you can calculate. Your code would then be:

$interval = time() - $row['POSTED'];
echo round(abs($interval) / 60) . ' minute';

If you use strtotime you must use a time format this function understands. Check if the function returns false. In that case there is an error.

link|improve this answer
+1, although if you are reading a MySQL datetime field, it will definitely be in a format strtotime() will understand - but the MySQL function may be more efficient? Presumably MySQL stores datetimes as an int in the back end, to make greater/less than operations easier? Pure conjecture there but got to be a good chance... – DaveRandom Aug 27 '11 at 22:50
feedback
up vote 1 down vote accepted
you can use like this

$date = strtotime($row['POSTED'])
echo datediff($date);
function datediff($date)
             {
        $interval = time()-$date;
        $min=round(abs($interval/60));
        $hour=round(abs($min/60));
        $days=round(abs($hour/24));
        $mon=round(abs($days/30));
        $year=round(abs($mon/12));
    }
link|improve this answer
feedback

Try to use simple:

    $mydate=strtotime($row['POSTED']);
    $interval = time()-$mydate;
    echo round(abs($interval) / 60)." minute";
link|improve this answer
tried... getting output 21908081 minute – cool_ravi Aug 27 '11 at 22:41
Edited. try this one. – Andrej L Aug 27 '11 at 22:45
correct !! but, need some modification... – cool_ravi Aug 27 '11 at 22:45
feedback
// Make a timestamp from DB data and subtract it from current time
$interval = time() - strtotime($row['POSTED']);
// Divide the result by 60, make sure it's positive and round to nearest int
echo round(abs($interval / 60))." minutes";
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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