PHP 使用strtotime比较日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 使用strtotime比较日期相关的知识,希望对你有一定的参考价值。

// Get the dates 
$today = date("m/d/Y");
$datefrom = "10/01/2010";
$dateto = "10/12/2010";

// Convert dates to strings
$todaystring = strtotime($today);
$datefromstring = strtotime($datefrom);
$datetostring = strtotime($dateto);

// Compare the dates (check if today is between start and end dates)
if ($todaystring >= $datefromstring && $todaystring <= $datetostring) {
    // Do something if today is in between
    echo "Date is ok.";
} else {
    // Do something if it is not in between
    echo "Date is wrong.";
}

以上是关于PHP 使用strtotime比较日期的主要内容,如果未能解决你的问题,请参考以下文章

PHP日期比较

PHP用strtotime()函数比较两个时间的大小实例详解

PHP中如何给日期加上一个月/天

PHP strtotime() 函数

PHP时间戳 strtotime()使用方法和技巧

php 日期时间戳strtotime时间