曾经我写了很多逻辑来比较俩个时间的大小。总结下简单的方法。
JS 比较两个时间的大小
if(Date.parse($fromtime.replace(/-/g,"/"))>Date.parse($endtime.replace(/-/g,"/"))){
tipslog('活动结束时间不能早与活动开启时间', 'tiperror', 2);
return false;
}
tipslog('活动结束时间不能早与活动开启时间', 'tiperror', 2);
return false;
}
PHP 比较俩时间大小
将时间转成时间戳
strtotime('2010-03-24 08:15:42');
然后直接比较时间戳的大小。
Java :