這篇文章主要介紹了PHP簡單日曆實作方法,涉及php日期與時間的相關運算運算,非常簡單實用,需要的朋友可以參考下
運行效果截圖如下:
具體程式碼如下:
<?php /* * Created on 2016-7-20 */ SimCalendar('2016-08');//显示8月份日历 function SimCalendar($date) { /** * 简单日历输出,本函数需要cal_days_in_month的支持 * @param $date Y-m 要输出的日期 */ echo '<table border="1"> <thead> <tr> <th>日</th> <th>一</th> <th>二</th> <th>三</th> <th>四</th> <th>五</th> <th>六</th> </tr> </thead> <tbody>'; $date_array = explode('-', $date); $start_week = 0;//从星期天开始为0 $month = cal_days_in_month(CAL_GREGORIAN, $date_array[1], $date_array[0]);//当月的天数 $wstar = date('w', strtotime($date . '-01'));//当月从星期几天始 $rows = ceil(($wstar + $month) / 7);//总行数 $mday = 1;//第几天 for ($i = 0; $i < $rows; $i++) { echo '<tr>'; for ($d = 0; $d < 7; $d++) { $nowday = 7 * $i + $d + $start_week; if ($nowday >= $wstar && $mday <= $month) { $temp = date('d', strtotime($date . '-' . $mday)); echo '<td>'.$temp . '</td>'; $mday++; } else { echo '<td> </td>'; } } echo '</tr>'; } echo '</tbody> </table>'; } ?>
總結:以上就是這篇文的全部內容,希望對大家的學習有所幫助。
相關推薦:
##
以上是PHP實作簡單日曆的案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!