概述
//1.strtotime 获取一个月的开始 或者一个月的结束
$firstday = date('Ym01', strtotime($date));$lastday = date('Ymd', strtotime("$firstday +1 month -1 day"));
//解析:当strtotime中参数改变时 +1 year 代表 年加1 +1 month 代表 月+1 默认是当前时间 运行一下 下面的输出就知道了
echo date("Y-m-d",strtotime("+1 year +1 month -1 day"));
//2.如果传入有值 就中传入的值上面进行加减 运行该程序
echo date("Y-m-d",strtotime("2011-03-11 +1 year +1 month +1 day"));
exit;
function getthemonth($date)
{
$firstday = date('Ym01', strtotime($date));
$lastday = date('Ymd', strtotime("$firstday +1 month -1 day"));
return array($firstday, $lastday);
}
var_dump(getthemonth("2011-02-28"));
exit;
最后
以上就是壮观摩托为你收集整理的strtotime 获取一个月的开始 或者一个月的结束的全部内容,希望文章能够帮你解决strtotime 获取一个月的开始 或者一个月的结束所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复