这是一个有点复杂的问题,我不知道我会如何回应,但我试试。 如何在PHP中每隔30秒生成一个随机令牌,适用于每个客户端向服务器发送请求php在哪里运行此脚本? 例如:
用户1在17:30:10连接到服务器,令牌为ABC
用户2在17:30:33连接到服务器,令牌始终为ABC
必须每30秒更换一次令牌。 我该如何实现这个?
答案 0 :(得分:1)
Make you're token when connecting, save that in a file
or database
save the datetime or timestamp too. If there is another load, check if the time has a difference of 30 seconds. Ifso, update the db values and the random key.
答案 1 :(得分:0)
You can save the token into cache, or file, dB and set the expiration time to 30 sec