我想检查给定日期(如 2012-12 年)是否比当前日期旧或新。
我知道如何检查大月份
if(strtotime('2012-12')<strtotime('-1 Months')){
echo "true"; // got TRUE ... correct!
} else {
echo "false";
}
但是较新的呢?
if(strtotime('2013-02')>strtotime('1 Months')){
echo "true";
} else {
echo "false"; // got FALSE ... incorrect !
}
检查较新日期时,我得到了不正确的结果。