Home > Backend Development > PHP Tutorial > 已知某一天年月日,求500天后的年月日原始算法?不要用时间戳。

已知某一天年月日,求500天后的年月日原始算法?不要用时间戳。

WBOY
Release: 2016-06-06 20:30:01
Original
1462 people have browsed it

求算法,最好是php的
补充一下:不是用unix时间戳,因为那个时间范围是有限制的,要原始算法。
提示:时间类刻度和子刻度的精确推算。
比如,3200年150个月,500天,1000小时,700分钟,600秒后是哪年几月几日几时几分几秒。

回复内容:

求算法,最好是php的
补充一下:不是用unix时间戳,因为那个时间范围是有限制的,要原始算法。
提示:时间类刻度和子刻度的精确推算。
比如,3200年150个月,500天,1000小时,700分钟,600秒后是哪年几月几日几时几分几秒。

<code>echo date('Y-m-d H:i:s' ,strtotime('+500 days'));
</code>
Copy after login
Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template