<?php $d = new DateTime( '2015-01-30' ); $d->modify( 'first day of next month' ); echo $d->format( 'F' ), "\n"; ?>
zyc841584303
2015-02-03 20:53:13 +08:00
@Sunyanzi 每天都会运行的一个脚本,数据库分表来, xxxx_201501_201502 然后前几天出现问题的变成了xxxx_201501_201503。官网上面很早就有这个问题了,一直没管。 严谨点,推荐10楼的做法echo date('Ym', strtotime('first day of next month', strtotime('20150130')) );