每次在php中执行时,如何从phpscript创建一个具有新名称的新文本文件?

时间:2019-06-15 02:18:00

标签: php

我正在创建一个程序,用户通过执行代码每次都会得到一个新的文本文件。我现在有代码可以在其中创建文本文件到由变量限制设置的特定数量的代码。尝试创建代码,使程序继续创建新的文本文件,直到用户停止创建它们为止。例如textfile1.txt,textfile2.txt。还要严格使用php文件和texfiles,因为这是我创建调查的任务,因此用户可以根据需要创建尽可能多的调查。

$number = $number + 10000;/ the number is where i am stuck at
//As you can see the number is set  and has limit now if this limit could be set by the count and amount of times the user creates a new textfile.txt  that would have numerrically it's own value i woudn't a problem
$filename = "textfile.txt".$number;
fopen($filename,"a");

0 个答案:

没有答案