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年を追加するにはどうすればよいですか
DateTime::modify をチェック
$expiryDate->modify('+5 year');
また
$expiryDate = new DateTime('+5 year');