running a php task every 24 hours(每 24 小时运行一次 php 任务)
问题描述
我有一些函数使用 curl 从几个站点中提取信息并将它们插入到我的数据库中.我只是想知道每 24 小时执行一次这项任务的最佳方法是什么?
I have some functions that use curl to pull information off a couple of sites and insert them into my database. I was just wondering what is the best way to go about executing this task every 24 hours?
我现在正在运行 Windows,但可能会在我活着后切换到 linux(如果这有所作为).我现在在 symfomy 框架内工作.
I am running off windows now, but will probably switch to linux once I am live (if that makes a difference). I am working inside symfomy framework now.
我听说 cronjobs 可以做到这一点...但看网站似乎可以远程工作,我宁愿把东西放在家里...我可以在我的电脑上运行服务"吗?不管这意味着什么;)(听说过使用过)
I hear cronjobs can do this this...but looking at the site it seems to work remotely and I would rather just keep things in house...Can i just "run a service" on my computer? whatever that means ;) (have heard it used)
感谢您的帮助,安德鲁
推荐答案
这正是 Cron (linux) 或计划任务 (windows) 的用途.
This is exactly what Cron (linux) or Scheduled Tasks (windows) are for.
您可以在您的应用服务器上运行它们以将所有内容保存在一个地方.
You can run them on your application server to keep everything in one place.
例如,我有一个 cron 在我的家庭服务器上运行,每天备份它的 MySQL 数据库.这个过程只涉及一个系统.
For example, I have a cron running on my home server to backup its MySQL databases every day. Only one system is involved in this process.
这篇关于每 24 小时运行一次 php 任务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:每 24 小时运行一次 php 任务
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01