1

我想取一个文本文件,将其分成两半,然后将一半放在一个文件中,然后将剩下的一半放在下一个文件中。如何做到这一点?

一个例子是:split.php?n=file.txt

$file = $_GET['n'];

$i = 1;
$fp = fopen("./server/php/files/".$file,'a+');
$fs = filesize("./server/php/files/".$file);
$lengthhalf = $fs / 2;
while(! feof($fp)) {
    $contents = fread($fp,$lengthhalf);
    file_put_contents('./server/php/files/[2]'.$file,$contents);
    $i++;
}
4

1 回答 1

5

这样就可以完成工作,而无需在内存中一次读取整个文件(或其中的一半):

function split_in_halves($file, $half1, $half2) {
    $size = filesize($file);
    $fd = fopen($file, 'rb');

    stream_copy_to_stream($fd, fopen($half1, 'wb'), $size/2);
    stream_copy_to_stream($fd, fopen($half2, 'wb'));
}
split_in_halves('foo', '[1]foo', '[2]foo');
于 2013-05-27T18:31:18.483 回答