Home > php教程 > PHP源码 > php获取日期所在月份的日历

php获取日期所在月份的日历

PHP中文网
Release: 2016-05-23 16:39:10
Original
1799 people have browsed it

1. [代码][PHP]代码   

$month_date = '2015-09-08';
$start_time = strtotime($month_date);
$start_week = date('w', $start_time);
$total_month_day = date('t', $start_time);
$weeks_in_month = ceil(($start_week+$total_month_day)/7);
$month_day_arr = [];
$start_month_day = 1;
for($i=0;$i<$weeks_in_month;$i++) {

    for($j=0;$j<7;$j++){
        if($i ==0 && $j >= $start_week) {
            $month_day_arr[$i][$j] = $start_month_day;
            $start_month_day++;
        } elseif($i == 0) {
            $month_day_arr[$i][$j] = &#39;&#39;;
        } else {
            $month_day_arr[$i][$j] = $start_month_day;
            $start_month_day++;
        }

        if($start_month_day > $total_month_day){
            break;
        }
    }
}

echo "<pre class="brush:php;toolbar:false">";
print_r($month_day_arr);

Array
(
    [0] => Array
        (
            [0] => 
            [1] => 
            [2] => 1
            [3] => 2
            [4] => 3
            [5] => 4
            [6] => 5
        )

    [1] => Array
        (
            [0] => 6
            [1] => 7
            [2] => 8
            [3] => 9
            [4] => 10
            [5] => 11
            [6] => 12
        )

    [2] => Array
        (
            [0] => 13
            [1] => 14
            [2] => 15
            [3] => 16
            [4] => 17
            [5] => 18
            [6] => 19
        )

    [3] => Array
        (
            [0] => 20
            [1] => 21
            [2] => 22
            [3] => 23
            [4] => 24
            [5] => 25
            [6] => 26
        )

    [4] => Array
        (
            [0] => 27
            [1] => 28
            [2] => 29
            [3] => 30
        )

)
Copy after login

                   

                   

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template