我有一個PHP腳本,我正在循環遍歷文本文件中的所有行。如何刪除該行被讀取後,所以由腳本都已經輸出將會從文件中刪除行的結束......PHP循環播放txt文件後刪除行
$file = $dataDoc['file'];
if(is_file($file)){
$contents = file($file);
foreach($contents as $line) {
echo $line . "\n";
// Delete line here and keep looping over the rest of the lines...
}
}
你的意思是 - 從文件中刪除行? –
是的,這就是我的意思 – LargeTuna