Maybe you need to update DateTime::TimeZone

http://www.timeanddate.com/time/zone/israel/tel-aviv says since mar 25 DST +1h, or UTC+3H instead of the regular UTC+2H, agrees with https://en.wikipedia.org/wiki/Israel_Summer_Time#Summer_Time_Dates

DateTime is returning +3 for the timesone, so it is accurate

$ perl -MDateTime -le " print DateTime->now( qw[ time_zone Asia/Tel_Av +iv ] )->strftime( q/%F-%H:%M:%S%z/) " 2016-03-30-06:04:01+0300 $ perl -MDateTime -le " print DateTime->now( qw[ time_zone GMT ] )->st +rftime( q/%F-%H:%M:%S%z/) " 2016-03-30-03:05:58+0000

In reply to Re: Perl CPAN module DateTime gives wrong Israel time by beech
in thread Perl CPAN module DateTime gives wrong Israel time by feiiiiiiiiiii

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.