Home  >  Article  >  Backend Development  >  读定txt文件的问题

读定txt文件的问题

WBOY
WBOYOriginal
2016-06-23 13:47:52782browse

一。请问怎么每次把内容写入txt文件的第一行。

二。请问怎么读取txt文件的最后一行。


回复讨论(解决方案)

一:

$handle  =  fopen ( 'a.txt' ,  'r+' );rewind($handle);fwrite($handle,"这是第一行\r\n");fclose ( $handle );


二:

$handle  =  fopen ( 'a.txt' ,  'r+' );$arr=array();while($line=fgets($handle)){    $arr[]=$line;}fclose ( $handle );echo end($arr);

一。那个写入txt第一行把txt文件原来的内容都清除了,我是想保留原来的内容,新内容插入到第一行。

$str="这是第一行\r\n";  $handle  =  fopen ( 'a.txt' ,  'r+' );   while($line=fgets($handle)){    $str.=$line;   }   fclose($handle);   file_put_contents('a.txt',$str);

看来没有直接功能去实现,只能循环取出数据了,谢谢啦

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn