当前位置:Gxlcms > PHP教程 > 读定txt文件的有关问题

读定txt文件的有关问题

时间:2021-07-01 10:21:17 帮助过:11人阅读

读定txt文件的问题
一。请问怎么每次把内容写入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);

人气教程排行