doukui4786 2014-10-14 13:27
浏览 30

安排季度代码运行 - PHP [关闭]

I have a PHP website running on windows server (no Cron stuff allowed :)), how can I schedule a PHP code (sending emails) to run every quarter (every 3 months) ? I found ways to utilize Windows Task Scheduler , but in the scheduling triggering options, there is no Quarterly option. Thanks in advance for any help :)

  • 写回答

1条回答 默认 最新

  • doumeng4400 2014-10-14 13:33
    关注

    You can use schtasks to run the code every 15 minutes:

    schtasks /create /tr 'php foo.php' /sc minute /mo 15
    

    Where you replace foo.php with the actual php script.

    If the script should be scheduled every three months (quarterly), use the following command:

    schtasks /create /tr 'php foo.php' /sc monthly /mo 3
    
    评论

报告相同问题?

悬赏问题

  • ¥20 iqoo11 如何下载安装工程模式
  • ¥15 flask项目,怎么使用AJAX传数据库数据到echarts图表的data里,实现异步加载数据。
  • ¥15 本题的答案是不是有问题
  • ¥15 关于#r语言#的问题:(svydesign)为什么在一个大的数据集中抽取了一个小数据集
  • ¥15 C++使用Gunplot
  • ¥15 这个电路是如何实现路灯控制器的,原理是什么,怎么求解灯亮起后熄灭的时间如图?
  • ¥15 matlab数字图像处理频率域滤波
  • ¥15 在abaqus做了二维正交切削模型,给刀具添加了超声振动条件后输出切削力为什么比普通切削增大这么多
  • ¥15 ELGamal和paillier计算效率谁快?
  • ¥15 蓝桥杯单片机第十三届第一场,整点继电器吸合,5s后断开出现了问题