如何在没有Crontab的情况下每两周在PHP中调用一个方法

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了如何在没有Crontab的情况下每两周在PHP中调用一个方法脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我想更新htML中的div,每周只用PHP显示不同的内容,而不使用cron.
如何实现它?以下代码用于在第10天每2个月激活一次代码
但我猜逻辑会有所不同.如果可能的话,一些提示或示例将是伟大的!我很乐意听到你的消息!

// check if current day is 10th and month is an even number
if (date('d')==10 && date('m') % 2 == 0) {
    // get todays-date (format: yyyymmdd)
    $today = date('Ymd'); 
    // get info about last run
    $last_run = VARiable_get('my_last_run',0);
    // check last run was not today
    if ($last_run!=$today) {
        // set last run to today
        variable_set('my_last_run',$today);

        /* Place your code here */

    }
}

解决方法

我刚刚更新了你的例子,现在它将在下周一发布:

$weekInYearNumber = (int)date('W');
$weekDayNumber = (int)date('w');
if ($weekDayNumber === 1 && $weekInYearNumber % 2 == 0) {
    // Rest of your code.
}

脚本宝典总结

以上是脚本宝典为你收集整理的如何在没有Crontab的情况下每两周在PHP中调用一个方法全部内容,希望文章能够帮你解决如何在没有Crontab的情况下每两周在PHP中调用一个方法所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。