Get UTC from another timezone with Carbon

后端 未结 1 993
执念已碎
执念已碎 2020-12-13 12:32

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)-         


        
相关标签:
1条回答
  • 2020-12-13 12:46

    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');
    
    0 讨论(0)
提交回复
热议问题