How to run cron job with zend framework 2(如何使用 Zend 框架 2 运行 cron 作业)
问题描述
我在 Zend Framework 2 中构建了应用程序.我想设置 cron 作业来更新我的产品.我知道这样的脚本应该从公共文件夹之外运行,但不幸的是我在 cron 中的脚本需要使用框架文件.
我该怎么做?
我想出的唯一方法是从公共文件夹外部运行脚本,然后添加一些哈希或密码并重定向到
I have application built in Zend Framework 2. I would like to set cron job for updating my products. I know scripts such as this should be run from outside of public folder, but unfortunately my script in cron needs to use framework files.
How can I do this?
The only way I figured out is to run script from outside of public folder then add some hash or password and redirect to
www.domain.com/cron/test
所以我将拥有所有框架功能.
会安全吗?也许还有其他方法?
So I will have all framework functionality.
Will it be secure? Maybe there is a other way?
推荐答案
我强烈建议使用 CLI 来满足此类需求.
I strongly recommend to use CLI for such requirement.
- 在应用程序模块中创建一个带有 updateAction() 的 ConsoleController.
将控制台路由添加到您的应用程序模块的
module.config.php
:
- Create a ConsoleController with an updateAction() inside the application module.
Add a console route to your application module's
module.config.php
:
array(
'router' => array(
'routes' => array(
...
)
),
'console' => array(
'router' => array(
'routes' => array(
'cronroute' => array(
'options' => array(
'route' => 'updateproducts',
'defaults' => array(
'controller' => 'ApplicationControllerConsole',
'action' => 'update'
)
)
)
)
)
)
);
现在打开终端
Now open the terminal and
$ cd /path/to/your/project
$ php public/index.php updateproducts
仅此而已.希望有帮助.
Thats all. Hope it helps.
这篇关于如何使用 Zend 框架 2 运行 cron 作业的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Zend 框架 2 运行 cron 作业
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01