84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
举个例子,我要获取当前的时间戳,可以这样:
time();
我要获取以当前时间为基础,往后1个月的时间戳,可以这样:
strtotime('+1 month');
我要获取指定时间的时间戳,比如2019-11-23,可以这样:
strtotime('2019-11-23');
那么问题来了,我要以任意一个时间节点作为基础,在此之上获取往后1个月的时间戳,请问怎么做?比如说2019-11-23往后1个月的时间戳。
需要考虑到闰年、闰月、大小月份哦
php Comment calculer l'horodatage d'un mois dans le futur pour une heure spécifiée ? -PHP Site chinois Q&A-php Comment calculer l'horodatage d'un mois dans le futur à une heure spécifiée ? - Questions et réponses sur le site Web chinois PHP
Veuillez regarder et apprendre.
1月31日往后一个月是二月28/29号,还是3月1/2/3号?2月28/29日往后一个月是3月28/29/30/31?3月31日往后一个月是4月30号还是5月1号?
strtotime的+1 month是直接加31天,很可能不是你想要的结果:
date('Y-m-d', strtotime('+1 month', strtotime('2016-01-31'))); // 2016-03-02 date('Y-m-d', strtotime('+1 month', strtotime('1999-01-31'))); // 1999-03-03 date('Y-m-d', strtotime('+1 month', strtotime('1999-03-31'))); // 1999-05-01
DateInterval('P1M')也是类似的结果。
int strtotime ( string $time [, int $now = time() ] )
strtotime 可以传入第二个参数,用来表示参考时间,默认是当前时间,所以 strtotime('+1 month'); 才会计算出下个月的时间。
php Comment calculer l'horodatage d'un mois dans le futur pour une heure spécifiée ? -PHP Site chinois Q&A-php Comment calculer l'horodatage d'un mois dans le futur à une heure spécifiée ? - Questions et réponses sur le site Web chinois PHP
Veuillez regarder et apprendre.
1月31日往后一个月是二月28/29号,还是3月1/2/3号?
2月28/29日往后一个月是3月28/29/30/31?
3月31日往后一个月是4月30号还是5月1号?
strtotime的+1 month是直接加31天,很可能不是你想要的结果:
DateInterval('P1M')也是类似的结果。
strtotime 可以传入第二个参数,用来表示参考时间,默认是当前时间,所以 strtotime('+1 month'); 才会计算出下个月的时间。