我在本地主机服务器上执行下面的代码时遇到了问题,我试图从名为" count.txt"的文本文件中获取计数器。我想把一些东西保存到变量文本文件中,如0.txt,1.txt等。
但是每当我在count.txt中获得1时,无论count.txt中的任何内容如何。第二件事它不是将varibale文本文件生成为1.txt,2.txt等。我无法弄清楚错误是什么,我很想知道,之前我应该让它你知道我已经使用chmod 777
设置了该文件夹的permison。
<?php
$filc = fopen("count.txt", "w+") or die ("can't open file");
$stor = "";
while (!feof($filc))
{
$stor=$stor.fgetc($filc);
}
$stor_file = $stor.".txt";
/*stor_file is ready!!!*/
$stor_num = (int)$stor;
$stor_num++;
$filn = fopen($stor_file, "w+") or die("unable to make 2nd file");
$thing = $_GET["name"];
fwrite($filn, $thing);
fwrite($filc, $stor_num);
fclose($filn);
fclose($filc);
?>