テキストファイル内の特定の変数を削除する方法はありますか?次の内容のテキストファイルをxyz.txtと呼びましょう。
sdasd
dasdasda
sadasd
次に、ファイルのコンテンツを。でロードしますfile_get_contents
。削除する変数をユーザーが決定できるようにします。彼が選択したとしましょうsdasd
。テキストファイルから行を削除したい場合、何を使用する必要がsdasd
ありますか?ここで役立つものは見つかりませんでした:PHP手動ファイルシステム
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>';