如何确定帐户已过期。
帐户的到期日期以这种格式“dd/mm/yyyy”存储
例如,用户的到期日期为“2012 年 12 月 8 日”我如何将其与今天的日期进行比较并使用 PHP 找出其过期帐户?
我试过
$expiry = strtotime("12/8/2012");
$now = new DateTime();
echo ($now < $expiry ? 'active' : 'expired');
它向我显示了一个错误
Object of class DateTime could not be converted to int