Help for this page

Select Code to Download


  1. or download this
    $fh->open("<:unix $filepath")
    
  2. or download this
    $fh->open("<:perlio $filepath")
    
  3. or download this
    $fh->open("< $filepath");
    binmode($fh);
    
  4. or download this
    open(my $fh, '<', $filepath);
    binmode($fh);