Magento 如何配置 cron

发布于 2024-10-19 04:25:01 字数 322 浏览 2 评论 0原文

我在我的一个模块中配置了一个自定义 cron,我希望它每 1 周在上午 11:00 执行一次,我在我的 config.xml 中编写了这个函数,

<cron_expr>0 0 * * 1</cron_expr>

每 1 周在午夜执行一次该函数,或者至少这就是我的理解,但现在我不知道如何编写要在上午 11:00 执行的表达式,我什至不知道 * * * * * 的真正含义,在 magento 的 wiki 中每次都会说cron 正在执行。

如何让我的 cron 每 1 周上午 11:00 执行一次,

谢谢

i have configured a custom cron in one of my modules, i want it be executed every 1 week, at 11:00 am, i've wrote this in my config.xml

<cron_expr>0 0 * * 1</cron_expr>

this execute the function every 1 week at midnight, or at least this is what i understand, but now i don't know how to write the expresion to be execute at 11:00 am, i even don't know what really means the * * * * *, in the magento's wiki say everytime the cron is execute.

how can it make my cron execute every 1 week at 11:00 am

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎樣才叫好 2024-10-26 04:25:02

需要配置小时项(第二项):

<cron_expr>0 11 * * 1</cron_expr>

You need to configure the hour item (the second item):

<cron_expr>0 11 * * 1</cron_expr>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文