本文實例講述了php刪除txt檔案指定行及按行讀取txt文檔資料的方法。分享給大家參考,如下:
向txt檔案循環寫入值:
$keys = range(1,999); $file = fopen('key_11010000.txt',"w"); foreach($keys as $key){ fwrite($file,"$key\r\n"); } fclose($file); $f1 = fopen('key_11010000.txt','r'); while(!feof($f1)){ $line=fgets($f1); $line = trim($line); $arr[] = $line; } $keys = array_filter($arr); var_dump($keys);
按行讀取文件資料:
$f1 = fopen('key_11010000.txt','r'); while(!feof($f1)){ $line=fgets($f1); $line = trim($line); $arr[] = $line; } $keys = array_filter($arr); var_dump($keys); die;
按行讀取文件資料:
rrreee
.設計有所幫助。
更多php刪除txt檔案指定行及按行讀取txt文檔資料的方法相關文章請關注PHP中文網!