我的网站上有这段代码:
<form name="form" method="post">
<input type="text" name="text_box" size="50"/>
<input type="submit" id="search-submit" value="submit" />
</form>
<?php
if(isset($_POST['text_box'])) { //only do file operations when appropriate
$a = $_POST['text_box'];
$myFile = "t.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $a);
fclose($fh);
}
?>
我想做的事情是,当已经有一个 t.txt 时,它会创建一个 t2.txt,然后是 t3.txt 等等,所以它不会覆盖前一个 t 中的文本。文本。