gpt4 book ai didi

php - 从文本文件php中删除行

转载 作者:搜寻专家 更新时间:2023-10-31 21:36:22 26 4
gpt4 key购买 nike

我正在尝试列出文本文件中的所有行,并在每一行旁边都有一个删除按钮。按下按钮时,应删除该行。如下图

 Line One Text | Delete
Line Two Text | Delete
Line Three Text | Delete

我认为我非常接近但无法让它工作,有什么想法吗?线条和按钮显示正常,但删除按钮似乎没有做任何事情。

编辑.php

<?php
$textFile = file("guestbook.txt");
foreach ($textFile as $key => $val) {
$line = @$line . $val
. "<input type='submit' name=$key value='Delete'><br />";
}

$form = "<form name='form' method='post' action='deleter.php'> $line
</form>";

echo $form;
?>

删除器.php

if ($delete != "" && $delete > !$lines || $delete === '0') {
$textFile[$delete] = "";
$fileUpdate = fopen("data.txt", "wb");
for ($a = 0; $a < $lines; $a++) {
fwrite($fileUpdate, $textFile[$a]);
}
fclose($fileUpdate);
header("Location:edit.php");
exit;
}

foreach ($textFile as $key => $val) {
$line = @$line . $val . "<a href =?delete=$key> Delete </a><br />";
}
echo $line;
?>

提前致谢!

最佳答案

如果没有一行可以等于另一行,一种方法是使用要删除的字符串查询服务器,例如 delete.php?str=<your string>并删除该字符串(请注意,我说的是“字符串”而不是行)。

如果线条可能相等,您应该识别线条并遵循类似的方法:delete.php?line=<number> .

这应该很容易,您可以编写一个灵活的代码,通过传递文件名从给定文件中删除行。

编辑:根据使用隐藏字段的建议提供的示例。

<?php
$html = "<form id='form' method='post' action='delete.php'>";
foreach(array("line 1", "line 2", "line 3") as $key => $value ) {
$html .= "<span>${value}</span>";
$html .= "<input type='hidden' name='lineNumber' value='${key}'>";
$html .= "<input type='submit' value='Delete' name='line'><br>";
}
$html .= "</form>";
echo $html;
?>

在你的delete.php获取$_POST['lineNumber']的内容检索行号。

关于php - 从文本文件php中删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18500093/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com