Aug 9, 2001 #1 Thameem Programmer Sep 18, 2002 30 US Hi, Do anybody knows how to convert PST to GMT? Is there any built in function available in perl to convert timezones?
Hi, Do anybody knows how to convert PST to GMT? Is there any built in function available in perl to convert timezones?
Aug 9, 2001 #2 raider2001 Technical User Apr 27, 2001 488 US You can use the gmtime function. $time = time; ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = gmtime($time); Upvote 0 Downvote
You can use the gmtime function. $time = time; ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = gmtime($time);
Aug 9, 2001 Thread starter #3 Thameem Programmer Sep 18, 2002 30 US Thanx raider2001, It worked.. Upvote 0 Downvote