Jump to content

Converting And Subtracting Dates


JustinK101

Recommended Posts

Hello, I need to preform a date/time conversion.

I have the following data:

$date which stores a date in mysql format, yyyy-mm-dd
$time which stores the time in mysql format hh:mm:ss

Then I need to grab the current date and time from the server and subtract the difference from the current date/time against my custom $date/$time and return the result in the form of hours. So an hour and half from the current date/time to the stored date/time would be returned as 1.5, etc. Thanks much!

Link to comment
https://forums.phpfreaks.com/topic/22810-converting-and-subtracting-dates/
Share on other sites

here is my solution, I think this works, any better way of doing it though?

$my_date = $row[0];
$my_time = $row[1];

$my_epoch = strtotime($my_date . "T" . $my_time);
$this_epoch = time();

$total = ((($this_epoch - $my_epoch) / 60) / 60);
$total = round($total, 2);

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.