php 日期操作 天数加1
#PHP 取当月的第一天和最后一天 echo date('Y-m-01',time()).'----'.date('Y-m-t',time());
#给定一个日期: $s= '2012-05-28 14:23:43'; #在这个日期上加上1天 得到新日期 echo date('Y-m-d H:i:s',strtotime("$s +1 day")); #输出 2012-05-29 14:23:43
4.strstotime()函数转化时间戳 echo(strtotime("now")); //1138614504 echo(strtotime("3 October 2005")); //1128290400 echo(strtotime("+5 hours")); //1138632504 echo(strtotime("+1 week")); //1139219304 echo(strtotime("+1 week 3 days 7 hours 5 seconds")); //1139503709 echo(strtotime("next Monday")); //1139180400 echo(strtotime("last Sunday")); //1138489200
相关推荐
清风徐来水波不兴 2020-06-09
nimeijian 2019-10-24
辛苦的字幕君小样 2013-05-16
theScoreONE 2019-06-28
怕什么真理无穷 2019-06-26
wangdoudou0 2012-01-31
微米游戏开发团队 2017-11-28
pengjincheng 2011-07-12
史玉明 2015-08-11
cssssb 2009-12-09
贝伦酱 2009-12-08
itkissit 2009-12-03
飞空静渡 2009-11-23
phpcrazy 2019-04-16
phptyong 2019-04-16
phptyong 2019-04-15
ZONGXP 2012-03-29