Get UTC from another timezone with Carbon

PhpPhp Carbon

Php Problem Overview


How do I get the UTC date with Carbon if I use another timezone?

$timestamp = '2014-02-06 16:34:00';
Carbon::createFromFormat('Y-m-d H:i:s', $timestamp)->timezone('Europe/Stockholm');

I create with a Europe/Stockholm timezone. How do I get the UTC date from that (2014-02-06 15:34)?

Php Solutions


Solution 1 - Php

You can change the timezone with this:

$timestamp = '2014-02-06 16:34:00';
$date = Carbon::createFromFormat('Y-m-d H:i:s', $timestamp, 'Europe/Stockholm');
$date->setTimezone('UTC');

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMarwellnView Question on Stackoverflow
Solution 1 - PhpMarwellnView Answer on Stackoverflow