Another way to approach this is to let php know what your time zone is. You can edit your php.ini file and put in the following line:
date.timezone = “America/Anchorage”
You can find valid time zone strings at https://nl3.php.net/manual/en/timezones.php
Tried this and it fixed my problem. Thanks for solution.