NAME

SPVM::Time - Time manipulation

SYNOPSYS

use SPVM::Time;

# Get Current Epoch time
my $time = SPVM::Time->time;

# Get Local time information
my $time_info = SPVM::Time->localtime(SPVM::Time->time);

# Get GMT time information
my $time_info = SPVM::Time->gmtime(SPVM::Time->time);

# Convert L<SPVM::Time::Info> to which is local time zone to calender time as same as time method format.
my $time = SPVM::Time->timelocal($time_info);

# Convert L<SPVM::Time::Info> which is the standard Greenwich time zone to calender time as same as time method format.
my $time = SPVM::Time->timegm($time_info);

DESCRIPTION

Time manipulation.

STATIC METHODS

time

sub time : long ();

Returns the number of non-leap seconds since whatever time the system considers to be the epoch, suitable for feeding to "gmtime" and "localtime". On most systems the epoch is 00:00:00 UTC, January 1, 1970;

Example:

my $time = SPVM::Time->time;

localtime

sub localtime : SPVM::Time::Info ($time : long)

Converts a time as returned by the time method to a SPVM::Time::Info object with the time analyzed for the local time zone.

Example:

my $time_info = SPVM::Time->localtime(SPVM::Time->time);

"mday" is the day of the month and "mon" the month in the range 0..11, with 0 indicating January and 11 indicating December.

"year" contains the number of years since 1900. To get a 4-digit year write:

my $year = $time_info->year + 1900;

"wday" is the day of the week, with 0 indicating Sunday and 3 indicating Wednesday. "yday" is the day of the year, in the range 0..364 (or 0..365 in leap years.)

"isdst" is true if the specified time occurs during Daylight Saving Time, false otherwise.

If you get current time information, pass return value of "time" method.

my $time_info = SPVM::Time->localtime(SPVM::Time->time)

See also the "timelocal" method. (for converting seconds, minutes, hours, and such back to the integer value returned by time()).

gmtime

sub gmtime : SPVM::Time::Info ($time : long)

Works just like "localtime" but the returned values are localized for the standard Greenwich time zone.

See also the "timegm" method. (for converting seconds, minutes, hours, and such back to the integer value returned by time()).

timelocal

sub timelocal : long ($time_info : SPVM::Time::Info)

timelocal method convert SPVM::Time::Info which is local time zone to calender time as same as time method format.

wday and yday is ignored.

my $time = SPVM::Time->timelocal($time_info);

timegm

sub timegm : long ($time_info : SPVM::Time::Info)

timegm method convert SPVM::Time::Info which is the standard Greenwich time zone to calender time as same as time method format.

wday and yday is ignored.

my $time = SPVM::Time->timegm($time_info);