相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
php刪除txt文件指定行及按行讀取txt文檔數(shù)據(jù)的方法
本文實例講述了php刪除txt文件指定行及按行讀取txt文檔數(shù)據(jù)的方法。分享給大家供大家參考,具體如下:
向txt文件循環(huán)寫入值:
$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);