将 3 年添加到时间戳
我有一个从数据库中获取的时间戳。现在我必须加上3年。
- 是否可以在时间戳本身中添加 3 年,然后 转换日期和时间格式?
- 或者转换成日期和时间格式后我们可以添加?
如何在闰年和所有这些方面添加 3 年?
I have a timestamp that is fetched from the database. Now I have to add 3 years to it.
- Is it possible to add 3 years in timestamp itself and then
converting the date and time format ? - or after converting into the date and time format we can add?
How to add 3 years with respect to leap year and all those?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于每个非闰年,添加
365 * 86400
=31536000
。对于每个闰年,添加
366 * 86400
=31622400
。For every non-leap year, add
365 * 86400
=31536000
.For every leap year, add
366 * 86400
=31622400
.