Search code examples
phptimezoneutc

UTC Offset in PHP


What's the easiest way to get the UTC offset in PHP, relative to the current (system) timezone?


Solution

  •   date('Z');
    

    returns the UTC offset in seconds.