php下个月
❶ php月份循环怎么做
<?php
$StartMonth='2014-08-12';//开始日期
$EndMonth='2015-10-20';//结束日期
$ToStartMonth=strtotime($StartMonth);//转换一下
$ToEndMonth=strtotime($EndMonth);//一样转换一下
$i=false;//开始标示
while($ToStartMonth<$ToEndMonth){
$NewMonth=!$i?date('Y-m',strtotime('+0Month',$ToStartMonth)):date('Y-m',strtotime('+1Month',$ToStartMonth));
$ToStartMonth=strtotime($NewMonth);
$i=true;
echo$NewMonth,'<br/>';
}
测试效果
❷ php 如何用date取得指定月份有多少天
$time = strtotime("2013-02-01");
echo date('t', $time);
你思路是对的,只要把日期格式补完就可以了。
❸ 在php中如何获得未来时间
php获取昨天、今天、明天、上周、本月、一年后、十年后的开始时间戳和结束时间戳:
//php获取昨天日期
date("Y-m-d",strtotime("-1day"))
//php获取明天日期
date("Y-m-d",strtotime("+1day"))
//php获取一周后日期
date("Y-m-d",strtotime("+1week"))
//php获取一周零两天四小时两秒后时间
date("Y-m-dG:H:s",strtotime("+1week2days4hours2seconds"))
//php获取下个星期四日期
date("Y-m-d",strtotime("nextThursday"))
//php获取上个周一日期
date("Y-m-d",strtotime("lastMonday"))
//php获取一个月前日期
date("Y-m-d",strtotime("lastmonth"))
//php获取一个月后日期
date("Y-m-d",strtotime("+1month"))
//php获取十年后日期
date("Y-m-d",strtotime("+10year"))
//php获取今天起止时间戳
mktime(0,0,0,date('m'),date('d'),date('Y'));
mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
//php获取昨天起止时间戳
mktime(0,0,0,date('m'),date('d')-1,date('Y'));
mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
//php获取上周起止时间戳
mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y'));
mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y'));
//php获取本月起止时间戳
mktime(0,0,0,date('m'),1,date('Y'));
mktime(23,59,59,date('m'),date('t'),date('Y'));
❹ php 下个月起始结束日期
<?php
functionDateAdd($part,$number,$date)
{
$date_array=getdate(strtotime($date));
$hor=$date_array["hours"];
$min=$date_array["minutes"];
$sec=$date_array["seconds"];
$mon=$date_array["mon"];
$day=$date_array["mday"];
$yar=$date_array["year"];
switch($part)
{
case"y":$yar+=$number;break;
case"q":$mon+=($number*3);break;
case"m":$mon+=$number;break;
case"w":$day+=($number*7);break;
case"d":$day+=$number;break;
case"h":$hor+=$number;break;
case"n":$min+=$number;break;
case"s":$sec+=$number;break;
}
returndate("Y-m-dH:i:s",mktime($hor,$min,$sec,$mon,$day,$yar));
}
$today="2015-01-30";
$nowMonth=date("m",strtotime($today));
$nowYear=date("Y",strtotime($today));
$nextMonth1=DateAdd('m',1,$nowYear."-".$nowMonth."-1");
$nextnextMonth=DateAdd('m',2,$nowYear."-".$nowMonth."-1");
$nextMonth2=DateAdd('d',-1,$nextnextMonth);
echo"下月开始日期:".date("Ymd",strtotime($nextMonth1));
echo"<br>";
echo"下月结束日期:".date("Ymd",strtotime($nextMonth2));
exit();
?>
❺ php怎样去统计数据库一个月的某一个数据!如何判断本月的天数!
得到下个月的1号,然后减1,就是该月的最后一天啊,然后时间在该月1号和刚刚得到的时间戳之间就满足条件
❻ php中用time()函数存入时间,如何查询当月的数据
这个time()函数是将时间保存成时间戳格式,则要查当月数据,只要查当月第一天到当月最后一天的之间的数据即可。
假设这个用来判断的字段是date
sql语句
SELECT ………… WHERE………… `date` >= 本月第一天的time值 AND `date` < 下个月第一天的time值
所以这里就只要获取当月第一天以及下个月第一天的时间戳
具体如下:
<?php
$cur = date('Y-m',time());//当天年月
$cur_y = date('Y',time());//当天年份
$cur_m = date('m',time());//当天月份
$cur_f = $cur . '-1';//本月首日
$first = strtotime($cur_f);//时间戳最小值,本月第一天时间戳
//下月首日
if($cur_m>=12){
$cur_n = ($cur_y+1) . '-1-1';
}else{
$cur_n = $cur_y . '-' . ($cur_m+1) . '-1';
}
$last = strtotime($cur_n);//时间戳最大值,下个月第一天时间戳
?>
再把$first 和 $last 放入sql语句里面就可以查询到数据了