Help for this page

Select Code to Download


  1. or download this
    my $yesterday = localtime (time - 86400);
    
  2. or download this
    my @yesterday_values = localtime(time - 86400);
    
  3. or download this
    my $current_hour = (localtime)[2];
    my $yesterday_around_noon = localtime(time - ($current_hour + 12) * 36
    +00);