Help for this page

Select Code to Download


  1. or download this
    my ($lastMod) = (head($url))[2];
    
  2. or download this
    if (my (undef,undef,$lastMod) = head($url)) {
       # success
    ...
          # but alas no mod time
       }
    }
    
  3. or download this
    my $gotHead = (my (undef,undef,$lastMod) = head($url));