Jump to content

subtracting timestamps


newbiePHP

Recommended Posts

Hey guys,

 

I have read so much stuff on timestamps over the last few hours that i think my head has melted.

 

I have a very simply problem.

 

I have 2 timestamps and I need to find the time between them.

 

I include a bit of the code I'm using.

 

I know from echos that $Realtime[0]= 2007-08-28 15:24:44    and $Timestamp[1]= 2007-08-28 10:00:01

 

but when i echo out $Realtime[1] i just get 0. I'm going to be taking timestamps away from each other a lot so I'm going to write a function that takes in 2 timestamps and returns there difference in H:m:s

 

Can someone help me with this please.

 

$Realtime[1] = $Realtime[0] - $Timestamp[1];

 

Any help would be great!!

Thanks

Link to comment
https://forums.phpfreaks.com/topic/80608-subtracting-timestamps/
Share on other sites

<?php
$data = '2007-08-28 15:24:44';
$data = strtotime("$data");
echo "We converted 2007-08-28 15:24:44 to a Unix Timestamp: $data<br><br>"; 
echo "When converted back with date(), we get: " . date('H:i:s', $data);

 

lol... time and date stuff is really easy...

 

PhREEEk

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.