首页 > 代码库 > strtotime month 时间bug
strtotime month 时间bug
//解决比如3月31号加一个月变成5月1号等问题 $time = time(); //当前月份中的第几天 $day = date(‘j‘,$time); //这个月的天数 $month_day = date(‘t‘,$time); //这个月的第一天 $first_day_of_month_time = strtotime(date(‘Y-m-01 H:i:s‘,$time)); //下个月的第一天 $first_day_of_next_month_time = strtotime("+1 month",$first_day_of_month_time); //下个月的天数 $next_month_day = date(‘t‘,$first_day_of_next_month_time); //如果下个月的天数小于这个月当前天数 if($next_month_day<$day){ $next_month = date("Y-m-t",$first_day_of_next_month_time ); }else{ $next_month = date(‘Y-m-d‘,strtotime("+1 month",$time)); }
strtotime month 时间bug
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。