Help for this page

Select Code to Download


  1. or download this
    my $last_login = 1231357784;
    my $ll = Time::Format::time_format( 'Weekday Month dth yyyy, h:mm', $l
    +ast_login );
    print STDERR "We should get here\n"; # but we dont
    
  2. or download this
    my $last_login = 1231357784;
    my $ll = Time::Format::time_format( 'mm/dd/yy hh:mm', $last_login );
    print STDERR "We should get here\n"; # and we do
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    use CGI;
    ...
    my $a = Time::Format::time_format( 'Weekday Month dth yyyy, h:mm', $la
    +st_login ); # time format string that crashes
    
    print "last login $a";