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

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

PHP中文网
Freigeben: 2016-05-23 16:39:10
Original
1799 Leute haben es durchsucht

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
        )

)
Nach dem Login kopieren

                   

                   

Verwandte Etiketten:
php
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Aktuelle Ausgaben
PHP-Datenerfassung?
Aus 1970-01-01 08:00:00
0
0
0
PHP-Erweiterung intl
Aus 1970-01-01 08:00:00
0
0
0
Wie man PHP gut lernt
Aus 1970-01-01 08:00:00
0
0
0
Mehrere PHP-Versionen
Aus 1970-01-01 08:00:00
0
0
0
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage