gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 13:39:51 26 4
gpt4 key购买 nike

我正在开发一个 PHP 程序,我必须比较一个 date 变量和一个 string 变量。我试过 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
}

希望对您有所帮助

关于php - 如何在 PHP 中比较日期和字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40547752/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com