在Angular 6中检查夏令时

时间:2018-09-26 18:04:08

标签: angular angular6

我使用以下代码在php中使用了夏令时检查功能

if (date('I', time()))
    {
    $time_zone = 'BST';
    }
    else
    {
    $time_zone = 'GMT';
    }

我如何在Angle 6中检查相同的功能

1 个答案:

答案 0 :(得分:2)

Angular不是语言。 Angular 6与Typescript一起运行,可转换为javascript。您正在寻找一种可以解决此问题的js / ts方法。

How to check if the DST (Daylight Saving Time) is in effect and if it is what's the offset?