Help for this page

Select Code to Download


  1. or download this
       my $IP = #extract from %data;
       my $userAgent = #extract from %data;
       my $date = #extract from %data;
       my $aRequests = $hRequests{$IP}{$userAgent}{$date};
       push @$aRequests, \%data;
    
  2. or download this
       while (my ($IP, $hUserAgents) = each(%hRequests)) {
          next if #IP is boring;
    ...
          }
       }