duanqin7791 2016-06-06 09:54
浏览 49
已采纳

PHP检测指定日期和now()之间是否匹配指定条件

I want to know how to detect if a date range matched specified condition:

Expected results:

<?php
$start_date1 = '2016-05-06 00:00:00';
$start_date2 = '2016-01-06 00:00:00';

$result1 = is_date_range_exceeds_3_months($start_date1);
$result2 = is_date_range_exceeds_3_months($start_date2);
//lets say 'now' is '2016-06-06 00:00:00'

//Expected result of $result1 = false
//Expected result of $result2 = true
?>

(Please make correction to my question as I think this question is not in correct format/words)

Thanks!

  • 写回答

2条回答 默认 最新

  • doulu8446 2016-06-06 10:01
    关注

    You could use DateTime for this.

    function is_date_range_exceeds_3_months($strDate)
    {
    
        $userDate = new \DateTime($strDate); // @todo: Check if is valid
        $checkDate = new \DateTime(); // By default date seed is now
        $checkDate->modify('+3 months'); // Set period
    
        if($userDate > $checkDate) {
            return true;
        } else {
            return false;
        }
    
    }
    

    This is just a tip, sorry if it contains some typos.

    Edit by OP:

    function is_date_range_exceeds_x_months($month_limiter, $start_date) {
        $userDate = new DateTime($start_date); // @todo: Check if is valid
        $userDate = $userDate->format('Y-m-d H:i:s');
    
        $checkDate = new DateTime(); // By default date seed is now
        $checkDate->modify('-' . $month_limiter . ' months'); // Set period
        $checkDate = $checkDate->format('Y-m-d H:i:s');
    
    
        if ($userDate < $checkDate) {
            return true;
        } else {
            return false;
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛