如何在 PHP 中比较日期和字符串

2022-08-30 23:12:21

我正在开发一个PHP程序,我必须比较一个变量和一个.我试过了,但它不起作用...表明?谢谢datestring variablestrcmp


答案 1

比较日期的最佳方法是使用时间戳:

$string = '11/05/2016';//string variable
$date = date('Y-m-d',time());//date variable

$time1 = strtotime($string);
$time2 = strtotime($date);
if($time1>$time2){
    //do this
}
else{
    //do this
}

我希望它有帮助


答案 2
$time = strtotime('10/16/2003');

$newformat = date('Y-m-d',$time); //my date format is Y-m-d,usw your date format

还有一个变量$newformatdate

通过这种方式,您可以比较和datestring


推荐