Help for this page

Select Code to Download


  1. or download this
    while( $sz > 32760 ) {
       print $FH substr($m, pos($m), 32760);
    ...
    
    print $FH substr($m, pos($m), $sz);
    pos($m) += $sz;
    
  2. or download this
    while( $sz > 32760 ) {
       print $FH substr($m, 0, 32760, '');
    ...
    }
    
    print $FH substr($m, 0, $sz, '');
    
  3. or download this
    print $FH substr($m, pos($m), $sz);
    pos($m) += $sz;
    
  4. or download this
    print $FH substr($m, 0, $sz, '');