我需要比较两个日期
d1= 12-11-01(YY-MM-DD) and d2=2008-05-02(YYYY-MM-DD)
比较d2 <= d1
它没有按要求工作
在这里请注意,我需要比较不同日期格式的日期。
我需要比较两个日期
d1= 12-11-01(YY-MM-DD) and d2=2008-05-02(YYYY-MM-DD)
比较d2 <= d1
它没有按要求工作
在这里请注意,我需要比较不同日期格式的日期。
尝试:
$d1 = strtotime('12-11-01');
$d2 = strtotime('2008-05-02');
if ( $d2 <= $d1 ) {}
做这个 :
if(strtotime('12-11-01') <= strtotime('2008-05-02'))
{
// do your task here
}
您可以使用以下代码:
$d1 = strtotime($date1);
$d2 = strtotime($date2);
if($d2 <= $d1){
// $date2 is before $date1
}
试试这个
if(strtotime('12-11-01') <= strtotime('2008-05-02'))
{ }
如下图,
if(strtotime($date1) < strtotime($date2)) {
// do something
}
在这里进一步研究