如何检查$ _POST数组中的日期是否不大于今天的PHP日期?

时间:2014-12-10 05:41:55

标签: php arrays date date-comparison

要检查的日期如下:

$submission_date = 12-25-2014; //The date in mm-dd-yyyy format that is to be tested against today's date

现在我想回复错误消息,因为变量$submission_date中包含的日期是未来日期。

我应该如何有效地使用PHP来做到这一点?

提前致谢。

3 个答案:

答案 0 :(得分:1)

许多方法(例如,使用DateTime :: createFromFormat()来控制输入日期的确切格式)但也许最适合该示例的是:

$isFuture = (strtotime($submission_date) > strtotime($_POST['current_date']))

请注意OP改变了问题。如果需要测试的日期不在$ _POST数组中,只需将strtotime($_POST['current_date'])替换为time()即可使用当前系统时间。

要与当前日期进行比较,忽略一天中的时间,请使用:

$today = new DateTime(date("Y-m-d"));
// $today = new DateTime("today");  // better solution courtesy of Glavić
// see http://php.net/manual/en/datetime.formats.relative.php for more info
$today_timestamp = $today->getTimestamp();

答案 1 :(得分:1)

如果发布的格式位于m-d-Y,则您无法使用strtotime()函数将其直接转换为unix时间戳,因为它will return false

如果您需要使用strtotime(),请change the input format to m/d/Y by simple str_replace()

另一方面,您可以使用DateTime类,您可以直接比较对象:

$submission_date = DateTime::createFromFormat('!m-d-Y', $submission_date);
$today_date = new DateTime('today');

if ($submission_date > $today_date) {
    echo "submission_date is in the future\n";
}

demo

答案 2 :(得分:0)

使用PHP DateTime,您可以检查输入日期是未来还是旧日期。

$submission_date = DateTime::createFromFormat('m-d-Y', $submission_date);
$submission_date = $submission_date->format('Y-m-d');
$current_date    = new DateTime('today');
$current_date    = $current_date->format('Y-m-d');

if ($submission_date > $current_date)
{
       echo "Future date";
}
else
{
       echo "Old date";
}