Help for this page

Select Code to Download


  1. or download this
    use Time::Local;
    
    ...
    my @test2 = localtime($test);
    print "hour $hour vs $test2[2]\n";
    
  2. or download this
    hour 2 vs 2
    
  3. or download this
    use Time::Local;
    
    ...
    my @test2 = localtime($test);
    print "hour $hour vs $test2[2]\n";
    
  4. or download this
    hour 2 vs 3
    
  5. or download this
    use Time::Local;
    
    ...
    my @test2 = localtime($test);
    print "hour $hour vs $test2[2]\n";
    
  6. or download this
    hour 2 vs 2