嘿,有没有办法删除文本文件中的特定变量?我有一个文本文件,我们称之为 xyz.txt,其中包含以下内容:
sdasd
dasdasda
sadasd
现在我用file_get_contents
. 让用户决定他要删除哪个变量。假设他选择了sdasd
. 当我现在想sdasd
从文本文件中删除行时,我必须使用什么?在这里没有找到任何有用的东西:PHP Manual filesystem
以下是我如何加载 txtfile 的内容:
$handle = @fopen("xyz.txt", "r");
echo ('<table class="table table-bordered table-striped">');
echo '<thead>';
echo'<tr>';
echo'<th>Auswahl</th>';
echo'<th>Admin</th>';
echo'</tr>';
echo'</thead>';
echo ('<tbody>');
echo("<tr>");
while (!feof($handle)) // Loop til end of file.
{
$buffer = fgets($handle, 4096);
// Read a line.
list($a,$b,$c)=explode(" ",$buffer);
//Separate string by the means of |
echo '<td><form name="Lager" method="submit" action="admins_verwalten.php"><input type="radio" name="Admin" value="'.$a.$b.$c.'"><br></td>';
echo('<td>'.$a.$b.$c."</td>");
echo("</tr>");
}
echo ('</tbody>');
echo ('</table>');
echo '<button type="submit" class="btn btn-primary"></i>Admin delete</button></label></form>';