php删除txt文件指定行及按行读取txt文档数据 php删除txt文件指定行及按行读取txt文档数据的方法
design321 人气:0想了解php删除txt文件指定行及按行读取txt文档数据的方法的相关内容吗,design321在本文为您仔细讲解php删除txt文件指定行及按行读取txt文档数据的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:php,删除,txt文件,指定行,按行读取,txt文档,数据,下面大家一起来学习吧。
本文实例讲述了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);
按行读取txt文档数据:
$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;
希望本文所述对大家PHP程序设计有所帮助。
加载全部内容