所以我有一个PHP脚本,我用来将特定字符写入txt文件,在php脚本之外,html按钮通过使用按钮设置状态来设置字符。我现在需要创建多个按钮,以便它可以写入txt文件中的不同行。所以我的问题是,我如何制作这个脚本而不是覆盖整个文件而不是覆盖只说文件的第二行?
<?php
$onoroff = $_GET["state"]; // Declares the request from index.html as a variable
$textfile = "LEDstate1.txt"; // Declares the name and location of the .txt file
$fileLocation = "$textfile";
$fh = fopen($fileLocation, 'w ') or die("Something went wrong!"); // Opens up the .txt file for writing and replaces any previous content
$stringToWrite = "$onoroff"; // Write either 1 or 0 depending on request from index.html
fwrite($fh, $stringToWrite); // Writes it to the .txt file
fclose($fh);
header("Location: index.html"); // Return to frontend (index.html)
?>
提前感谢任何意见。