What options are there for executing a PHP script at a certain time every day?(每天在特定时间执行 PHP 脚本有哪些选项?)
问题描述
我有一个 PHP 脚本,需要在每个工作日的特定时间运行.cron
或 Windows 任务调度程序是执行此操作的唯一方法吗?
有没有办法从另一个 PHP 脚本中进行设置?
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 this up from within another PHP script?
推荐答案
取决于时间的精确程度.我见过使用的一种技术(称为穷人的 cron")是让经常访问的脚本(例如网站的主页)在一段时间后在第一页加载时触发任务(在数据库).
Depends how exact the timing needs to be. A technique I've seen used (dubbed "poor man's cron") is to have a frequently accessed script (a site's home page, for example) fire off a task on the first page load after a certain time (kept track of in the database).
不过,如果您需要任何形式的保证准确性,cron 或 Windows 计划任务确实是最佳选择.如果您的主机不支持它们,则是时候换一个更好的了.
If you need any sort of guaranteed accuracy, though, cron or a Windows scheduled task is really the best option. If your host doesn't support them, it's time to get a better one.
这篇关于每天在特定时间执行 PHP 脚本有哪些选项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:每天在特定时间执行 PHP 脚本有哪些选项?
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01