Jump to content

storing timestamp and finding the difference


prakash

Recommended Posts

for Diff:

 

$date=Retrieve from db;
$thendate = strtotime($date); OR $thendate=date('d m Y H:i:s',strtotime($date));
$nowdate = date('d m Y H:i:s');

$datediff = ($nowdate - $thendate);

echo $datediff." Seconds<br>";
echo round($datediff / 60)." Minutes<br>";
echo round($datediff / 3600)." Hours<br>";
echo round($datediff / 86400)." Days<br>";

Link to comment
Share on other sites

Oh sorry:

 

That would be like this

<?php
$nowdate = strtotime("20 January 2008");
$thendate = strtotime("4 March 2007");
$datediff = ($nowdate - $thendate);

echo $datediff." Seconds<br>";
echo round($datediff / 60)." Minutes<br>";
echo round($datediff / 3600)." Hours<br>";
echo round($datediff / 86400)." Days<br>";

?>

Works fine.

Link to comment
Share on other sites

I found this one:

<?php
function timeDiff($firstTime,$lastTime) {
// convert to unix timestamps
$firstTime=strtotime($firstTime);
$lastTime=strtotime($lastTime);

// perform subtraction to get the difference (in seconds) between times
$timeDiff=$lastTime-$firstTime;

// return the difference
return $timeDiff;
}

//Usage:
echo timeDiff("2002-03-16 18:56:32","2002-04-16 10:00:00");
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.