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 中安排/触发函数执行,以及如何重置和重新执行计时器?
您可以使用计时器编写刷新代码,在特定时间重新加载特定页面,只执行您所做的事情;或者,您可以从数据库中读取您的作业上次运行的时间(如果此时间已存储),如果时间已过,请再次运行它。
根据我的要求,我想最好的选择只是 crons。触发计时器和保存上下文信息(如堆栈、内存等)对我的应用程序来说开销太大。感谢您的回答。