Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 php 页面,当访问它时,它将打开一个 txt 文件,从中读取,然后写入它。但是如果多个人同时访问 php 页面会发生什么?有没有办法等到文件没有被使用,然后php代码读/写它?向它添加同步。
谢谢。
您可以为每个用户创建临时文件。一旦用户完成他的操作并注销。您可以创建一个函数来读取临时文件的内容并将其放入原始文件,然后删除临时文件。