Help for this page

Select Code to Download


  1. or download this
    my $str = '';
    my $tmp;
    while (read($handle, $tmp, 32*1024)) {
        $str .= $tmp;
    
  2. or download this
    my $str = '';
    while (read($handle, $str, 32*1024, length($str))) {
    
  3. or download this
    pos($str) = 0;
    
  4. or download this
    $str = substr($str, pos($str));