在 zend 框架项目中实现 cron
你好 我想在我的 Zendframe 工作中实现一个 cron 作业。我检查了它的 phpinfo 然后我得到服务器 API 是 CGI/FastCGI 和 SERVER_SOFTWARE 是 Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8m DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
所以我意识到我的项目正在 CGI 上运行,
我是这个 Cron 工作的新手。我也不知道 shell 和相关单词。所以请给我任何好的教程来实现 crone 作业
提前致谢
HI
I want to implement a cron job in my Zendframe work. I have checked its phpinfo then I got Server API is CGI/FastCGI and SERVER_SOFTWARE is Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8m DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635
So i realized that my project is running at CGI
I am new to this Cron job. also i don't know shell and related words. So please give me any good tutorial to implement crone job
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看有关 cron 的教程
http://clickmojo.com/code/cron-tutorial.html
http://www.htmlcenter.com/blog/running- php-scripts-with-cron/
您首先需要在脚本中实现任务的逻辑,然后使用 crontab 运行脚本。
用于
编辑 crontab 文件。
谈论 zend,您可以
1)将所需的代码放入其中一个控制器中
,或者
2)-在项目中创建一个文件夹“crons”
-在此文件夹中放入一个新的 php 脚本
-在 crontab 文件中放入一个 cron 作业来运行你的脚本
你的 crontab 文件可能看起来像这样
Check out this tutorials on crons
http://clickmojo.com/code/cron-tutorial.html
http://www.htmlcenter.com/blog/running-php-scripts-with-cron/
What you need first is to implement the logic of the task in your script and then just run the script with crontab.
Use
to edit your crontab file.
Talking about zend, you can
1)put the required code in one of you controllers
or
2) -create a folder "crons" in you project
-put a new php script in this folder
-put a cron job in your crontab file to run your script
your crontab file may look like this
只需像平常一样编写脚本即可。然后通过运行 crontab 命令将其添加到 crontab 中。
示例
因此,对于您来说,这可能是
这将每小时运行该脚本。
Just write your script like you normally do. And then add it to the crontab by running the crontab command.
Example
So for you this could be
This will run the script every hour.