Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get Greenwich Mean Time in PHP?

Tags:

timezone

php

I have a server which is set to EST, and all records in the database are set to EST. I would like to know how to set it to GMT. I want to offer a time zone option to my users.

like image 319
drikoda Avatar asked May 12 '09 07:05

drikoda


People also ask

How do I get GMT timestamp?

Use the getTime() method to get a GMT timestamp, e.g. new Date(). getTime() . The method returns the number of milliseconds since the Unix Epoch and always uses UTC for time representation. UTC shares the same current time with GMT.

What is a GMT timestamp?

GMT is the abbreviation of Greenwich Mean Time. Time zone offset of GMT is UTC. Greenwich Mean Time is same as the UTC (GMT) universal time. GMT current date is 26th Friday August 2022. Current time in GMT (GMT).

How can we convert the time zones using PHP?

php $datetime = date("Y-m-d H:i:s"); $utc = new DateTime($datetime, new DateTimeZone('UTC')); $utc->setTimezone(new DateTimeZone('America/Sao_Paulo')); echo $utc->format('Y-m-d H:i:s'); ?>


1 Answers

I would strongly suggest avoiding messing with UNIX timestamps to make it look like a different time zone. This is a lesson I've learnt the hard way, way too many times.

A timestamp is the number of seconds since Midnight 1 January 1970, GMT. It doesn't matter where you are in the world, a given timestamp represents the exact same moment in time, regardless of time zones. Yes, the timestamp "0" means 10am 1/1/70 in Australia, Midnight 1/1/70 in London and 5pm 31/12/69 in LA, but this doesn't mean you can simply add or subtract values and guarantee accuracy.

The golden example which stuffed me up every year for way too long was when daylight savings would crop up. Daylight savings means that there are "clock times" which don't exist in certain parts of the world. For example, in most parts of the US, there was no such time as 2:01am on April 2, 2006.

Enough quasi-intelligible ranting though. My advice is to store your dates in the database as timestamps, and then...

  • If you need the local time at the server, use date()
  • If you need to get GMT, then use gmdate()
  • If you need to get a different timezone, use date_default_timezone_set() and then date()

For example,

$timestamp = time();  echo "BRISBANE: " . date('r', $timestamp) . "\n"; echo "     UTC: " . gmdate('r', $timestamp) . "\n"; date_default_timezone_set('Africa/Johannesburg'); echo "  JOBURG: " . date('r', $timestamp) . "\n";  // BRISBANE: Tue, 12 May 2009 18:28:20 +1000 //      UTC: Tue, 12 May 2009 08:28:20 +0000 //   JOBURG: Tue, 12 May 2009 10:28:20 +0200 

This will keep your values clean (you don't have to be worrying about adding offsets, and then subtracting before saving), it will respect all Daylight Savings rules, and you also don't have to even look up the timezone of the place you want.

like image 186
nickf Avatar answered Oct 04 '22 04:10

nickf