在 *nix 上,有没有一种方法可以在未来的日期和时间触发进程? 时间?
我希望允许用户输入日期和时间来通过 PHP 发送大量电子邮件,尽管我认为最好使用 *nix 命令来触发 PHP 进程。 我想知道 *nix 上是否有一种方法可以做到这一点,而无需添加一个 cronjob 每 15 分钟运行一次来检查是否有大量电子邮件要发送。 这并不是一个密集的过程,但如果添加和管理一个 cronjob 就会更漂亮。 我认为这有点类似于 Windows 计划任务,它有一个结束日期,并且如果不再计划则设置为删除。
I'm looking to allow a user to enter a date and time to send out a mass email through PHP, although I'm thinking it might be best to use a *nix command to trigger the PHP process. I'm wondering if there is a way on *nix to do this without adding a cronjob to run every 15 minutes to check if there is a mass email to be sent. It's not that this is an intensive process, but it'd just be much prettier with a cronjob to add and manage. I thinking this would be somewhat similar to a Windows scheduled task that has an end date and is set to delete if it's not scheduled again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找 at 命令。
You're looking for the at command.
您可以使用
at
。You could use
at
.