您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“PHP怎么實(shí)現(xiàn)日歷效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“PHP怎么實(shí)現(xiàn)日歷效果”吧!
本文實(shí)例講述了PHP簡單日歷實(shí)現(xiàn)方法。分享給大家供大家參考,具體如下:
運(yùn)行效果截圖如下:
具體代碼如下:
<?php /* * Created on 2016-7-20 */ SimCalendar('2016-08');//顯示8月份日歷 function SimCalendar($date) { /** * 簡單日歷輸出,本函數(shù)需要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]);//當(dāng)月的天數(shù) $wstar = date('w', strtotime($date . '-01'));//當(dāng)月從星期幾天始 $rows = ceil(($wstar + $month) / 7);//總行數(shù) $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怎么實(shí)現(xiàn)日歷效果”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。