Jump to content

get time difference between 2 dates


vanquish12

Recommended Posts

I need to get the time difference between two dates. Here's what I have 

function getTodayDate(){

    $today = date('Y-m-d H:i:s');

    return $today;
}

function checkTimeDifference($previousTime){

    $today = $previousTime->diff(new DateTime(getTodayDate()));

    $minutes = $today->days * 24 * 60;
    $minutes += $today->h * 60;
    $minutes += $today->i;

    return $minutes . ' minutes';

}

however it's complaining about the call to diff "Call to a member function diff() on a non-object"

Link to comment
https://forums.phpfreaks.com/topic/294940-get-time-difference-between-2-dates/
Share on other sites

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.