問題中的文本文件名爲fp.txt,每行包含01,02,03,04,05,... 10。如何將文件指針移動到php中的上一行?
01
02
...
10
代碼:
<?php
//test file for testing fseek etc
$file = "fp.txt";
$fp = fopen($file, "r+") or die("Couldn't open ".$file);
$count = 0;
while(!(feof($fp))){ // till the end of file
$text = fgets($fp, 1024);
$count++;
$dice = rand(1,2); // just to make/alter the if condition randomly
echo "Dice=".$dice." Count=".$count." Text=".$text."<br />";
if ($dice == 1){
fseek($fp, -1024, SEEK_CUR);
}
}
fclose($fp);
?>
如此,因爲FSEEK($ FP,-1024,SEEK_CUR)的;工作不正常。我想要的是,如果骰子== 1,將文件指針設置爲上一行,即比當前行更上一行。但我認爲負值是將文件指針設置爲文件結尾,從而結束文件實際結束之前的while循環。
所需的輸出是:
Dice=2 Count=1 Text=01
Dice=2 Count=2 Text=02
Dice=2 Count=3 Text=03
Dice=1 Count=4 Text=03
Dice=2 Count=5 Text=04
Dice=2 Count=6 Text=05
Dice=2 Count=7 Text=06
Dice=1 Count=8 Text=06
Dice=1 Count=9 Text=06
Dice=2 Count=10 Text=07
.... //and so on until Text is 10 (Last Line)
Dice=2 Count=n Text=10
注意,只要骰子是2,文字是一樣的前一個。現在它只是停止在第一次出現骰子= 1
所以基本上我的問題是如何移動/重定位文件指針到上一行?
請注意,dice = rand(1,2)就是例子。在實際的代碼中,$ text是一個字符串,並且如果在字符串不包含特定文本時條件成立。
編輯: 解決,這兩個樣本(@hakre的&礦)正在按需工作。
,如果你將文件轉換爲數組會更容易['文件()'](http://php.net/file)和操作數組。 – flowfree
我打算添加文件可以包含1000多行的註釋。因此,將所有文件一次加載到一個數組中將不是最佳的,我認爲。 – DavChana
文件中的所有行是已知長度還是至少已知範圍的可能長度? – DaveRandom