读定txt文件的问题

WBOY
Release: 2016-06-23 13:47:52
Original
778 people have browsed it

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

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


回复讨论(解决方案)

一:

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


二:

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

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

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template