我有一个$bonus["from_date"]
和一个$bonus["to_date"]
,它们采用以下格式:yyyy-mm-dd我想检查今天的日期是否在这两个日期之间。
$today = date('Y-m-d', time());
我该怎么做?
答案 0 :(得分:13)
$from = strtotime($bonus['from_date']);
$to = strtotime($bonus['to_date']);
$now = time();
if($from <= $now && $to >= $now) {
// It's between
}
答案 1 :(得分:0)
您可以使用标准比较运算符:
if ($today >= $bonus['from_date'] && $today <= $bonus['to_date'])
它的工作原理是因为您首先存储的是具有最大日期元素的字符串。