Peterson Andrew
Peterson Andrew

Reputation: 243

Local time display with Global time in PHP

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

Answers (1)

Chris H
Chris H

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

Related Questions