flxcn / volunteer-nexus

Volunteer Nexus aims to provide a unified platform to connect students with service opportunities in an organized and efficient manner.
https://volunteernexus.com
1 stars 1 forks source link

Display local date & time instead of UTC date & time #60

Open flxcn opened 3 years ago

flxcn commented 3 years ago

In order for the mailer.php application to work properly and for timestamps to be accurate, there needs to be a conversion done prior to display.

$time = strtotime($dateInUTC.' UTC');
$dateInLocal = date("Y-m-d H:i:s", $time);

https://stackoverflow.com/questions/3792066/convert-utc-dates-to-local-time-in-php

flxcn commented 3 years ago

For now, VolunteerNexus can operate based on Central Time. Please check to see if Daylight Saving Time is supported in the strtotime() function.