文章作者

Chris Coyier

创始人、作家、设计师、垃圾邮件删除者、邮件个性

文章“日历函数”的直接链接

日历函数

<?php

function build_calendar($month,$year,$dateArray) {

    // Create array containing abbreviations of days of week.
    $daysOfWeek = array('S','M','T','W','T','F','S');

    // What is the first day of the month in question?
    $firstDayOfMonth = mktime(0,0,0,$month,1,$year);

    // How many days does this month contain?
    $numberDays =