Most of the time in shared hosting, default server time seems to be different than local timezone. You can change the default timezone using following snippet.
date_default_timezone_set("Asia/Kolkata");
$dateTime = date("Y-m-d H:i:s", time());
//For full reference, visit. https://www.php.net/manual/en/timezones.php
Comments
Post a Comment