我尝试了很多潜在的解决方案,但没有一个能为我工作.
最简单的一个:
最简单的一个:
$file = file('list.html'); array_pop($file);
什么都没做.我在这里做错了吗?它是不同的,因为它是一个HTML文件?
这应该有效:
原文链接:https://www.f2er.com/php/137061.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); ?>