Help for this page

Select Code to Download


  1. or download this
    use MIME::Base64;
    
    ...
    close $fh;
    
    print encode_base64($data, '');
    
  2. or download this
    open my $fh, '<', 'file' or die $!;
    binmode $fh;
    local $/ = undef;
    print encode_base64(<$fh>, '');