Subject: | gmtime vs localtime in the epoch race |
It could be that I'm misunderstanding the usage and if that's the case I'll go cower in the
corner or something...
-----
use Time::Piece;
print "GMT: ", gmtime, "\n";
print "LOC: ", localtime, "\n";
print "GMT: ", gmtime->epoch, "\n";
print "LOC: ", localtime->epoch, "\n";
-----
The epoch times are EXACTLY the same - shouldn't they be different if the local time isn't
the same as GMT time? or like I stated above - I could just be very confused.
Thanks.