本文整理汇总了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%"> </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"> </td>';
$s .= '<td valign="top" align="center" width="200">' . $minical->show() . '</td>';
$date->addMonths(1);
}
$s .= '<td valign="top" align="center" width="20%"> </td>';
$s .= '</tr></table>';