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

前端 未结 9 709
没有蜡笔的小新
没有蜡笔的小新 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:38

    You can write a long running script that runs your main script in predefined times but it will be very unnecessary, error prone, and it will basically be a "cron rewrite in phph".

    Using the real cron itself will be easier and a more robust solution. If you are packaging an application, you can put a file in /etc/cron.d which contains a single cron line running your application.

提交回复
热议问题