This topic is locked

How do I set a timezone different from one that my we hosting uses

4/6/2016 4:29:06 PM
PHPRunner Tips and Tricks
Sergey Kornilov admin

You can set timezone using date_default_timezone_set() function:

http://php.net/manual/en/function.date-default-timezone-set.php
The best place to put this code is AfterAppInit event.

date_default_timezone_set('America/Los_Angeles');