Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个作为到期日
$expiryDate = new DateTime();
但这会将到期日期推迟到今天。我怎么能在那段时间加5年
检查日期时间::修改
$expiryDate->modify('+5 year');
或者
$expiryDate = new DateTime('+5 year');