Help for this page

Select Code to Download


  1. or download this
    (my $sec, my $min, my $hour, my $mday, my $mon, my $year, my $wday, my
    + $yday, my $isdst ) = localtime(time);
    
  2. or download this
    my ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = l
    +ocaltime(time);
    
  3. or download this
    my $localtime = localtime(time);
    my $sec = $localtime->sec;
    my $min = $localtime->min;