如何在 PHP 中比较日期和字符串
我正在开发一个PHP程序,我必须比较一个变量和一个.我试过了,但它不起作用...表明?谢谢date
string variable
strcmp
我正在开发一个PHP程序,我必须比较一个变量和一个.我试过了,但它不起作用...表明?谢谢date
string variable
strcmp
比较日期的最佳方法是使用时间戳:
$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
}
我希望它有帮助
$time = strtotime('10/16/2003');
$newformat = date('Y-m-d',$time); //my date format is Y-m-d,usw your date format
还有一个变量$newformat
date
通过这种方式,您可以比较和date
string