我想获取实际时间并添加一天,下面的设置方法是datetime列类型,它不接受date函数。我该怎么办?
$password->setExpiretime(date("Y-m-d", time() + 86400));
答案 0 :(得分:0)
您可以在format
类的实例上使用DateTime
方法:
$tomorrow = new DateTime('tomorrow');
$password->setExpiretime($tomorrow->format('Y-m-d'));
根据OP提交的评论,如果返回类型应为DateTime
对象,则可以使用:
$tomorrow = new DateTime('tomorrow');
$password->setExpiretime($tomorrow);