Skip to content

Commit f89ee40

Browse files
committed
fix
1 parent ff0751f commit f89ee40

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

src/GoodCodecTSV.php

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -570,16 +570,3 @@ public static function tsv_decode_str($str, $skip_lines = 0, $in_charset = "UTF-
570570
return $data;
571571
}
572572
}
573-
574-
$s="ab\r\nbc";
575-
576-
$fp = fopen("php://temp/maxmemory:50000000", 'rw');
577-
fwrite($fp,$s);
578-
rewind($fp);
579-
while (($buffer = fgets($fp)) !== false) {
580-
var_dump($buffer);
581-
}
582-
if (!feof($fp)) {
583-
echo "Error: unexpected fgets() fail\n";
584-
}
585-
fclose($fp);

0 commit comments

Comments
 (0)