php计算出两个日期之间的月份
/** * 计算出两个日期之间的月份 * @author Eric * @param [type] $start_date [开始日期,如2022-03] * @param [type] $end_date [结束日期,如2022-12] * @param string $explode [年份和月份之间分隔符,此例为 - ] * @param boolean $addOne [算取完之后最后是否加一月,用于算取时间戳用] * @return [type] [返回是两个月份之间所有月份字符串] */ function dateMonths($start_date,$end_date,$explode='-',$addOne=false){ //判断两个时间是不是需要调换顺序 $start_int = strtotime($start_date); $end_int
共有 0 条评论