如果日期格式为'03_01_12'
和'31_12_11'
,如何在php中比较两个日期。
我正在使用此代码:
$date1=date('d_m_y');
$date2='31_12_11';
if(strtotime($date1) < strtotime($date2))
echo '1 is small ='.strtotime($date1).','.$date1;
else
echo '2 is small ='.strtotime($date2).','.$date2;
但是它不起作用..
最佳答案
您必须确保您的日期是有效的日期对象。
试试这个:
$date1=date('d/m/y');
$tempArr=explode('_', '31_12_11');
$date2 = date("d/m/y", mktime(0, 0, 0, $tempArr[1], $tempArr[0], $tempArr[2]));
然后,您可以执行
strtotime()
方法来获得差异。