On Sun Mar 09 12:53:46 2014, jaryd@jaryd.org wrote:
Show quoted text> It is currently daylight savings time in the United States. However,
> when I run
>
>
>
> $dt->is_dst();
>
>
>
> it returns "0" indicating that we are currently not in DST. i would
> expect this to return "1"
You haven't given me enough info to answer this question. How did you make this object? My psychic powers are on the fritz these days.
However, if I had to guess, I'd say you did "DateTime->now", which returns an object in the UTC time zone. You need to write "DateTime->now( time_zone => 'local' )" if you want it in your local time zone.