What options are there for executing a PHP script at a certain time every day?

前端 未结 9 731
没有蜡笔的小新
没有蜡笔的小新 2020-12-12 06:58

I have a PHP script that needs to be run at certain times every weekday. Is cron or Windows task scheduler the only way to do this?
Is there a way to set th

9条回答
  •  心在旅途
    2020-12-12 07:32

    You'll need to use a cron job (under Linux/Unix) or a scheduled task under Windows. You could have another script running on a continuous basis which checks the time and executes a script at a specified interval, but using the OS-supplied mechanism is easier to manage and resilient to restarts, etc.

提交回复
热议问题