我编写了一个生成随机令牌的 php 脚本,我想将这些令牌输出到 .txt 文件中。
下面是代码:
do {
$token = bin2hex(random_bytes(2));
echo("token: $token");
$myfile = fopen("output.txt", "w+") or die("Unable to open file!");
fwrite($myfile, $token);
fclose($myfile);
} while ($token != "e3b0");
它回显多个标记,直到echo = e3b0,但是当我尝试将结果写入txt文件时,它只写入“e3b0”,这是一种将“echo”的所有结果写入txt文件的方法吗?
不负相思意
德玛西亚99