Help for this page

Select Code to Download


  1. or download this
    use IO::Zlib;
    tie *FILE, 'IO::Zlib', "xxxxx-access_log.7.gz", "rb";
    ...
    
    
    yeah!
    
  2. or download this
    use IO::Zlib;
    my $fh = new IO::Zlib;
    ...
        $fh->close;
    }
    __END__