我有一个网站,每次用户登录或注销时,我都会将其保存到文本文件中。
如果不存在,我的代码在附加数据或创建文本文件时不起作用。这是示例代码
$myfile = fopen("logs.txt", "wr") or die("Unable to open file!"); $txt = "user id date"; fwrite($myfile, $txt); fclose($myfile);
我再次打开它后,它似乎没有附加到下一行。
另外我认为在2个用户同时登录的情况下也会出现错误,会影响打开文本文件并随后保存吗?
尝试这样的事情:
$txt = "user id date"; $myfile = file_put_contents('logs.txt', $txt.PHP_EOL , FILE_APPEND | LOCK_EX);