Help for this page

Select Code to Download


  1. or download this
    use strict;
    use LWP::UserAgent;
    ...
    my $response = $ua->request($request) || return "ERROR\t$!";
    
    print $response->content_length;
    
  2. or download this
    2927