码迷,mamicode.com
首页 > Web开发 > 详细

php 获取某个月的周一

时间:2018-07-18 14:09:44      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:cti   今天   pre   朋友   nbsp   date   alt   png   array   

今天有个朋友问了一个问题,最后解决了下,先整理记下来,后面用到了再说

function getMonday($month = ‘‘){
    if(empty($month)){
        $month = date("Y-m");
    }
    $maxDay  = date(‘t‘, strtotime($month."-01"));
    $mondays = array();
    for($i=1; $i<=$maxDay; $i++){
        if(date(‘w‘, strtotime($month."-".$i)) == 1){
            $mondays[] = $month."-".($i>9?‘‘:‘0‘).$i;
        }
    }
    return $mondays;
}

print_r(getMonday(‘2018-06‘));
print_r(getMonday(‘2018-12‘));
print_r(getMonday());

输出结果如下:

技术分享图片

 

php 获取某个月的周一

标签:cti   今天   pre   朋友   nbsp   date   alt   png   array   

原文地址:https://www.cnblogs.com/pfdltutu/p/9328342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!