I am in need of an easy way to convert a date time stamp to UTC (from whatever timezone the server is in) HOPEFULLY without using any libraries.
|
|
Try the getTimezone and setTimezone, see the example (But this does use a Class) UPDATE: Without any classes you could try something like this:
NOTE: You might need to set the timezone back to the original as well |
|||||||||
|
|
Use strtotime to generate a timestamp from the given string (interpreted as local time) and use gmdate to get it as a formatted UTC date back. ExampleAs requested, here’s a simple example:
|
||||
|
If you have a date in this format YYYY-MM-HH dd:mm:ss, you can actually trick php by adding a UTC at the end of your "datetime string" and use strtotime to convert it.
This will print this:
And as you can see it takes care of the daylight savings time problem as well. A little strange way to solve it.... :) |
|||
|
|
|
Do this way:
or simply
to get "NOW" in UTC. Check the reference: |
|||
|
|
|
http://php.net/manual/en/function.strtotime.php or if you need to not use a string but time components instead, then http://us.php.net/manual/en/function.mktime.php |
|||
|
|
|
try
will output:
you should change format time to see other output |
|||
|
|
|
I sometime use this method:
Works all the time. |
|||
|
|
|
With PHP 5 or superior, you may use datetime::format function (see documentation http://us.php.net/manual/en/datetime.format.php)
|
|||
|
|
|
As strtotime requires specific input format, DateTime::createFromFormat could be used (php 5.3+ is required)
|
|||
|
|
