How to compare two dates in php

前端 未结 15 2461
臣服心动
臣服心动 2020-11-22 08:37

How to compare two dates in php if dates are in format \'03_01_12\' and \'31_12_11\' .

I am using this code:

$date1=date(\'         


        
15条回答
  •  心在旅途
    2020-11-22 09:25

    I think this one is very simple function

    function terminateOrNotStringtoDate($currentDate, $terminationdate)
    {
        $crtDate = new DateTime($currentDate);
        $termDate = new DateTime($terminationdate);
        if($crtDate >= $termDate)
        {
            return true;
        } else {
        return false;
        }
    }
    

提交回复
热议问题