<?php
//***************萬年曆的實現********************//
//實現步驟
//1、擷取當前日期資訊年和月(預設為當前的年和月)
$year=$_GET["y"]?$_GET["y"]:date("Y");
$mon=$_GET["m"]?$_GET["m"]:date("m");
//2、計算出當前月有多少天,和本月1號是星期幾
$day=date("t",mktime(0,0,0,$mon,1,$year));//擷取的是當前月有多少天
$w=date("w",mktime(0,0,0,$mon,1,$year));//擷取的是本月1號是星期幾
//3、輸出日期的頭部資訊(標題和表頭)
echo "<center>";
echo "<h1>{$year}年{$mon}日</h1>";
echo "<table width='600px' border='1px'>";
echo "<tr>";
echo "<th style='color:red;'>星期日</th>";
echo "<th>星期一</th>";
echo "<th>星期二</th>";
echo "<th>星期三</th>";
echo "<th>星期四</th>";
echo "<th>星期五</th>";
echo "<th style='color:green'>星期六</th>";
echo "</tr>";
//4、迴圈遍曆輸出日期資訊
$dd=1;
while($dd<=$day){
echo "<tr>";
for($i=0;$i<7;$i++){
if(($w>$i&&$dd==1)||$dd>$day){
echo "<td> </td>";
}
else{
echo "<td>{$dd}</td>";
$dd++;
}
//if($dd<=$day&&($w<=$i||$dd!=1)){
//echo "<td>{$dd}</td>";
//$dd++;
//}
//else{
//echo "<td> </td>";
//}
}
echo "</tr>";
}
echo "</table>";
//5、輸出上一月和下一月的連結
$prey=$nexty=$year;
$prem=$nextm=$mon;
if($prem<=1){
$prem=12;
$prey--;
}else{
$prem--;
}
if($nextm>=12){
$nextm=1;
$nexty++;
}else{
$nextm++;
}
echo "<h2><a href='one.php?y={$prey}&m={$prem}'>上一月</a></h2>";
echo "<h2><a href='one.php?y={$nexty}&m={$nextm}'>下一月</a></h2>";
echo "</center>";
?>