2014-01-20 94 views
0

如何根據行數將一個文本文件分割爲單獨的文件?例如,文本文件有10000行,我想要有5個單獨的文件,每行2000行。爲每個x行分割文本文件

我曾嘗試這樣的:Split a text file in PHP

基本上我想類似的解決方案,但通過計數線,而不是字節數。

謝謝!

- 編輯 - 我得到它的工作從@提示user1477388

<?php 

// get file contents into string 
$stringData = file_get_contents('MyTextFile.txt'); 

// split by newline 
$arrayData = split("\n", $stringData); 

$fileCount = 0; 

// loop through arrayData 
for ($i = 0; $i < count($arrayData); $i++) 
{ 
    $file = 'myFileName'; 
    // for every 2000 lines, create a new file 
    if ($i % 2000 == 0) 
    { 
     $fileCount++; 
    } 
    file_put_contents($file . $fileCount . '.txt', $arrayData[$i]."\n", FILE_APPEND | LOCK_EX); 
} 

?> 
+1

你不能使用'split'或'csplit'命令嗎? –

+1

你到目前爲止做了什麼? –

+0

@MarkusMalkusch他明確指出「我試過這個:」...... – user1477388

回答

1

簡單的是這樣的:

$in = file("file"); 
$counter = 0; // to void warning  
while ($chunk = array_splice($in, 0, 2000)){ 
     $f = fopen("out".($counter++), "w"); 
     fputs($f, implode("", $chunk)); 
     fclose($f); 
} 

//未經測試。

+0

這創建了我的文本文件的副本,但帶有雙行換行符。 – r1pd

+0

內部固定代碼 – jancha

+0

它的工作,謝謝! – r1pd

0

我不知道如何有效的,這是或者如果它甚至會工作之後,但至少它會給你一個很好的起點:

<?php 

// get file contents into string 
$stringData = file_get_contents('MyTextFile.txt'); 

// split by newline 
$arrayData = split('\r\n', $stringData); 

// loop through arrayData 
for ($i = 0; $i < count($arrayData); $i++) 
{ 
    $file = 'myFileName'; 
    $fileCount = 1; 
    // for every 2000 lines, create a new file 
    if ($i % 2000 == 0) 
    { 
     $fileCount++; 
    } 
    file_put_contents($file . $fileCount . '.txt', $arrayData[$i], FILE_APPEND | LOCK_EX); 
} 

?> 
  • 未測試的代碼。
+1

不確定,但我需要用'\ r \ n''用\「\ n」'改變分割才能工作。此外,將'$ fileCount = 1;'移到循環的外部/上面,以便在嵌套代碼再次運行時不會返回到1。但是,現在已經解決了。謝謝! – r1pd

+0

是的,將它移動到循環之外是有意義的:)請接受並且提出幫助你的答案。 – user1477388

+0

這兩個答案都很好,但我不能接受2個答案。當我有足夠的代表時,我會贊成。謝謝! – r1pd

相關問題