Learn From :http://www.jxbh.cn/newshow.asp?id=1635&tag=2
//1.获取上个月第一天及最后一天. date(‘Y-m-01‘, strtotime(‘-1 month‘)); date(‘Y-m-t‘, strtotime(‘-1 month‘)); //2.获取当月第一天及最后一天. date(‘Y-m-01‘, strtotime(date("Y-m-d"))); date(‘Y-m-d‘, strtotime("$BeginDate +1 month -1 day")); //3.获取当天年份、月份、日及天数. echo " 本月共有:".date("t")."天"; echo " 当前年份".date(‘Y‘); echo " 当前月份".date(‘m‘); echo " 当前几号".date(‘d‘);
时间: 2025-01-02 09:44:16