Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: IO::Compress::Gzip blank output

by Burak (Chaplain)
on Sep 07, 2009 at 00:27 UTC ( [id://793857]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use IO::Compress::Gzip qw(gzip $GzipError) 
    # other code...
    IO::Compress::Gzip::gzip(\$content, \$newContent) or die "gzip failed:
    + $GzipError\n"
    
  2. or download this
        my @transferFileContents = <FILE_TO_TRANSFER>;
        foreach(@transferFileContents)
        {
          $content .= $_;
        }
    
  3. or download this
    $content = do { local $/; my $rv = <FILE_TO_TRANSFER>; $rv };
    
  4. or download this
    $content = do { # minimize scope
        local $/; # make input separator undef 'till the end of this scope
        my $rv = <FILE_TO_TRANSFER>; # get all contents
        $rv # return it
    };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://793857]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (7)
As of 2024-04-18 08:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found