當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CDate::getDaysInMonth方法代碼示例

本文整理匯總了PHP中CDate::getDaysInMonth方法的典型用法代碼示例。如果您正苦於以下問題:PHP CDate::getDaysInMonth方法的具體用法?PHP CDate::getDaysInMonth怎麽用?PHP CDate::getDaysInMonth使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CDate的用法示例。


在下文中一共展示了CDate::getDaysInMonth方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: CDate

$minical->setStyles('minititle', 'minical');
$minical->showArrows = false;
$minical->showWeek = true;
$minical->clickMonth = true;
$minical->setLinkFunctions('clickDay', 'clickWeek');
$s = '';
for ($j = 0; $j < 3; $j++) {
    $s .= '<table cellspacing="0" cellpadding="0" border="0" width="100%"><tr>';
    $s .= '<td valign="top" align="center" width="20%">&nbsp;</td>';
    for ($i = 0; $i <= 3; $i++) {
        // prepare time period for minical'events'
        $first_time = new CDate($date);
        $first_time->setDay(1);
        $first_time->setTime(0, 0, 0);
        $last_time = new CDate($date);
        $last_time->setDay($date->getDaysInMonth());
        $last_time->setTime(23, 59, 59);
        $links = array();
        // assemble the links for the tasks
        // assemble the links for the events
        //Pedro A.
        getTaskLinks($first_time, $last_time, $links, 20, $company_id, true);
        getEventLinks($first_time, $last_time, $links, 20, true);
        $minical->setEvents($links);
        $minical->setDate($date);
        $s .= '<td valign="top" align="center">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>';
        $s .= '<td valign="top" align="center" width="200">' . $minical->show() . '</td>';
        $date->addMonths(1);
    }
    $s .= '<td valign="top" align="center" width="20%">&nbsp;</td>';
    $s .= '</tr></table>';
開發者ID:joly,項目名稱:web2project,代碼行數:31,代碼來源:year_view.php


注:本文中的CDate::getDaysInMonth方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。