我将在计划的基础上通过curl触发对
PHP文件的调用.我想把脚本每23:59:59执行一次,或者只是在明天转一天前的一分钟.对此最好的方法是什么?仍然对cron设置感到困惑.
我需要确保在第二天之前准确地运行一秒钟.
要在每天23:59:00执行脚本,请使用以下命令:
原文链接:https://www.f2er.com/php/136084.html59 23 * * * root /path_to_file_from_root
使用Cron无法定义秒数,但这应该适合您.
要在23:59:59执行脚本,请使用PHP sleep()函数将脚本执行延迟59秒.我会建议58秒,只是为了确保脚本不会延迟到午夜之后.
这是非常基本的,您可以使它更复杂并运行测试以确保脚本始终在23:59:59运行,方法是检索时间并适当延迟.但这不应该是必要的.
<?PHP // Any work that the script can do without altering the database,do here // Delay the script by 58 seconds sleep(58); // Carry on with the rest of the script here,database updates etc ?>