Reputation: 243
Im storing time in DATETIME format and I need to display the time in local zone related time, I have no idea how to achieve in PHP, any ideas?
Upvotes: 0
Views: 141
Reputation: 41
use:
date_default_timezone_set('America/Los_Angeles');
List of time zones is available here:
http://www.php.net/manual/en/timezones.php
Upvotes: 1