在PHP生成日历函数中,如果单元格表示今天,则添加类

在PHP生成日历函数中,如果单元格表示今天,则添加类,php,Php,虽然我需要将todays date作为一个类添加到函数中,但我已经使用这个函数一段时间了,没有问题。我应该在哪里添加这个 /** * Returns a HTML calendar * * @return HTML table */ public function generateCalendar($year, $month, $days = array(), $day_name_length = 3, $month_href = NULL, $first_day = 0, $pn =

虽然我需要将todays date作为一个类添加到函数中,但我已经使用这个函数一段时间了,没有问题。我应该在哪里添加这个

/**
 * Returns a HTML calendar
 * 
 * @return HTML table
 */
public function generateCalendar($year, $month, $days = array(), $day_name_length = 3, $month_href = NULL, $first_day = 0, $pn = array(), $hover_content = array()) {
    $first_of_month = gmmktime(0,0,0,$month,1,$year);
    #remember that mktime will automatically correct if invalid dates are entered for instance, mktime(0,0,0,12,32,1997) will be the date for Jan 1, 1998 this provides a built in "rounding" feature to generate_calendar()

    $day_names = array(); #generate all the day names according to the current locale
    for($n=0,$t=(3+$first_day)*86400; $n<7; $n++,$t+=86400) #January 4, 1970 was a Sunday
        $day_names[$n] = ucfirst(gmstrftime('%A',$t)); #%A means full textual day name

    list($month, $year, $month_name, $weekday) = explode(',',gmstrftime('%m,%Y,%B,%w',$first_of_month));
    $weekday = ($weekday + 7 - $first_day) % 7; #adjust for $first_day
    $title   = htmlentities(ucfirst($month_name)).'&nbsp;'.$year;  #note that some locales don't capitalize month and day names

    @list($p, $pl) = each($pn); @list($n, $nl) = each($pn); #previous and next links, if applicable
    if($p) $p = '<span class="calendar-prev">'.($pl ? '<a href="'.htmlspecialchars($pl).'">'.$p.'</a>' : $p).'</span>&nbsp;';
    if($n) $n = '&nbsp;<span class="calendar-next">'.($nl ? '<a href="'.htmlspecialchars($nl).'">'.$n.'</a>' : $n).'</span>';
    $calendar = '<table class="calendar">'.
        '<thead><tr><td colspan="7" class="calendar-month">'.$p.($month_href ? '<a href="'.htmlspecialchars($month_href).'">'.$title.'</a>' : $title).$n."</td><tr>";

    if($day_name_length){ #if the day names should be shown ($day_name_length > 0)
        #if day_name_length is >3, the full name of the day will be printed

        foreach($day_names as $d)
            $calendar .= '<th abbr="'.htmlentities($d).'">'.htmlentities($day_name_length < 4 ? substr($d,0,$day_name_length) : $d).'</th>';
        $calendar .= "</tr>";
    }

    $calendar .= "</thead><tbody><tr>";

    if($weekday > 0) $calendar .= '<td colspan="'.$weekday.'">&nbsp;</td>'; #initial 'empty' days
    for($day=1,$days_in_month=gmdate('t',$first_of_month); $day<=$days_in_month; $day++,$weekday++){
        if($weekday == 7){
            $weekday   = 0; #start a new week
            $calendar .= "</tr><tr>";
        }
        if(isset($days[$day]) and is_array($days[$day])){
            @list($link, $classes, $content) = $days[$day];
            if(is_null($content))  $content  = $day;
            @list($sub_content) = $hover_content[$day];
            $calendar .= '<td'.($classes ? ' class="'.htmlspecialchars($classes).'">' : '>').'<div class="wrapper_div">'.
                '<div class="hoverContent">'.$sub_content.'</div>'.
                ($link ? '<a class="iframe" href="'.htmlspecialchars($link).'">'.$content.'</a>' : $content). '</div></td>';
        }
        else $calendar .= "<td><div>$day</div></td>";
    }
    if($weekday != 7) $calendar .= '<td colspan="'.(7-$weekday).'">&nbsp;</td>'; #remaining "empty" days

    return $calendar."</tr></tbody></table>";
}

这段代码很难看——无论如何。您可以通过名为$days的第三个参数传递自定义类。 只需使用getdate并检查正确的月份,然后将有效数组传递给函数。即

$days=数组; $date=getdate; $month=1; $year=2012年; 如果$month==$date[mon]{ $days[$date[mday]]=arrayfalse,今天,空; } echo generateCalendar$年、$月、$天;
有人用所有缺少的括号和换行符按字节付费。你想通过将今天的日期添加到的类标记来实现什么?不,我只想添加一个类,例如:class=today,如果today@Mike也许你能帮我一下,通过让我知道我做错了什么+1在单行if block周围添加花括号。