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 脚本有哪些选项?


基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01