PHP實現的簡單日曆代碼

來源:互聯網
上載者:User

//calendar.php
<?
/*******************************
*  用來判斷是否閏年的函數  *
*  可以根據更複雜的演算法改進 *
*******************************/
function leap_year($year)
{
if($year% 4 == 0) // basic rule
{
return true; // is leap year
}
else
{
return false;
}
}
/*******************************
*  對一些變數進行賦值操作  *
*  特別注意對二月份的賦值  *
*******************************/
function setup()
{
global $mon_num;
$mon_num=array(31,30,31,30,31,30,31,31,30,31,30,31);
global $mon_name;
$mon_name=array("一","二","三","四",
"五","六","七","八",
"九","十","十一","十二");
if (leap_year($firstday[year])) // basic rule
{
$mon_num[1]=29; // is leap year
}
else
{
$mon_num[1]=28;
}
}
/*******************************
*  顯示表格中的一格     *
*  顯示的內容和顏色可變   *
*******************************/
function showline($content,$show_color)
{
$begin_mark = "<TD WIDTH=60 HEIGHT=25>";
$begin_mark =$begin_mark."<FONT COLOR=$show_color>";
$end_mark = "</FONT></TD>";
echo $begin_mark.$content.$end_mark ;
}
?>
<!--行事曆程式的正式開始-->
<html>
<head>
<title>
社區日曆
</title>
<meta http-equiv=content-type content="text/html; charset=gb2312">
<head>
<body>
<?
//獲得當前的日期
$firstday = getdate(mktime(0,0,0,date("m"),1,date("Y")));
setup();
//顯示表格的名稱
echo "<CENTER>";
echo "<TABLE BORDER=2 CELLSPACING=4>";
echo "<TH COLSPAN=7 HEIGHT=50>";
echo "<FONT COLOR=red SIZE=3 >";
echo "$firstday[year]年 &nbsp".$mon_name[$firstday[mon]-1]."月&nbsp月曆";
echo "</FONT>";
echo "</TH>";
//表頭
$weekDay[0] = "日";
$weekDay[1] = "一";
$weekDay[2] = "二";
$weekDay[3] = "三";
$weekDay[4] = "四";
$weekDay[5] = "五";
$weekDay[6] = "六";
echo "<TR ALIGN="center" VALIGN="center">";
//顯示表格的第一行
for ($dayNum = 0; $dayNum < 7; ++$dayNum) {
showline($weekDay[$dayNum],"red");
}
echo"</TR>";
$toweek=$firstday[wday];//本月的第一天是星期幾
$lastday=$mon_num[$firstday[mon]-1];//本月的最後一天是星期幾
$day_count = 1;//當前應該顯示的天數
$up_to_firstday = 1;//是否顯示到本月的第一天
for ($row = 0; $row <= ($lastday+$toweek-1)/7; ++$row)//本月有幾個星期
{echo "<TR ALIGN=center VALIGN=center>";
for ($col=1; $col<=7; ++$col)
{
//在第一天前面顯示的都是"空"
if (($up_to_firstday <= $toweek) ||($day_count>$lastday))
{
echo "<TD>&nbsp</TD>";
$up_to_firstday++;
}
else
{
//顯示本月中的某一天
showline($day_count,"blue");
$day_count++;
}
}
echo "</TR>";
}
echo "</TABLE>";
echo "</CENTER>";
?>
</body>
</html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.