如何使用PHP验证今天的日期?

时间:2016-03-10 05:23:04

标签: php

我正在使用php创建订阅网站。我在2016-03-07 14:35:05格式中存储时间和日期在一个字段中我希望有效使用php从创建日期开始我希望有效期为一个月,如果一个月完成我想显示1个月完成其他任何事情。我做错了什么?我试过this教程。

$my_date=date("d/m/Y", strtotime("2012-12-24 12:13:14"));        
echo (strtotime($my_date) < strtotime('1 month ago'))

2 个答案:

答案 0 :(得分:1)

从我的回忆中,如果您在日期字段中使用/,则会假定美国m/d/Y而不是d/m/Y。我建议你尝试以下方法:

$my_date=date("d-m-Y", strtotime("2012-12-24 12:13:14"));
echo (strtotime($my_date) < strtotime('1 month ago'))

或者

$my_date=date("d.m.Y", strtotime("2012-12-24 12:13:14"));
echo (strtotime($my_date) < strtotime('1 month ago'))

答案 1 :(得分:0)

$today=date("d-m-Y h:i:s");
echo (strtotime($today) < strtotime('1 month ago'))