Help for this page

Select Code to Download


  1. or download this
    sub format_date {
        my ($epoch, $string, $timezone) = @_;
    ...
    
        return strftime($string, localtime($epoch));
    }
    
  2. or download this
    sub format_date {
    
    ...
    
        return $tzdate->strftime($string);
    }