如何使用php删除文件的最后一行?

前端之家收集整理的这篇文章主要介绍了如何使用php删除文件的最后一行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试了很多潜在的解决方案,但没有一个能为我工作.
最简单的一个:
$file = file('list.html');
array_pop($file);

什么都没做.我在这里做错了吗?它是不同的,因为它是一个HTML文件

这应该有效:
<?PHP 

// load the data and delete the line from the array 
$lines = file('filename.txt'); 
$last = sizeof($lines) - 1 ; 
unset($lines[$last]); 

// write the new data to the file 
$fp = fopen('filename.txt','w'); 
fwrite($fp,implode('',$lines)); 
fclose($fp); 

?>
原文链接:https://www.f2er.com/php/137061.html

猜你在找的PHP相关文章