Skip to content
Snippets Groups Projects

UTC TImezone Offset

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Erick Hitter
    Edited
    utc-offset.php 196 B
    <?php
    $tz_local = new DateTimeZone( 'America/New_York' );
    $tz_gmt = new DateTimeZone( 'UTC' );
    $time_gmt = new DateTime( 'now', $tz_gmt );
    $offset = $date ? $tz_local->getOffset( $time_gmt ) : -5;
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment