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