Help for this page

Select Code to Download


  1. or download this
    my ($content_type, $document_length, $modified_time, $expires, $server
    +) = head($url);
    
  2. or download this
    my %head;
    
    @head{qw(content_type document_length modified_time expires server)} =
    + head($url);
    die "Unable to get page '$url'\n" if !defined $head{content};
    
  3. or download this
    my $modified_time = $head{modified_time};