用php写一个简单低配版的万年历

<?php
//当前年
$year=$_GET['y']?$_GET['y']:date('Y');
//当前月
$month=$_GET['m']?$_GET['m']:date('m');
//当前月1号的时间戳
$firstday=strtotime("{$year}-{$month}-1");
//当前月天数
$days=date('t',$firstday);
//当前月1号是周几
$week=date('w',$firstday);
// echo "$week";

// 上一年和上一月
$prevyear=$year;
$prevmonth=$month-1;
if($prevmonth<1){
    $prevyear=$year - 1;
    $prevmonth=12;
}

// 下一年和下一月
$nextyear=$year;
$nextmonth=$month+1;
if($nextmonth>12){
    $nextyear=$year + 1;
    $nextmonth=1;
}

?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        *{
            font-family:微软雅黑;
        }
        a{
            text-decoration:none;
            color:#55f;
        }
    </style>
</head>
<body>
    <center>
       <h2>万年历-<?php echo $year ?>年<?php echo $month ?>月</h2>
       <table border="1px" cellspacing="0" width="700px">
           <thead>
               <tr>
                   <th>周日</th>
                   <th>周一</th>
                   <th>周二</th>
                   <th>周三</th>
                   <th>周四</th>
                   <th>周五</th>
                   <th>周六</th>
               </tr>
           </thead>
             <?php
             
             for($i=(1-$week);$i<=$days;){
                 echo '<tr>';
                 for($j=0;$j<7;$j++,$i++){
                     if($i>$days || $i<1){
                         echo "<td>&nbsp; </td>";
                     }else{
                         echo "<td>{$i}</td>";
                     }
                     
                 }
                 echo '</tr>';
             }
             ?>
       </table>
       <h3>
           <a href="new-datetable.php?y=<?php echo $prevyear ?>&m=<?php echo $prevmonth ?>">上一月</a>|
           <a href="new-datetable.php?y=<?php echo $nextyear ?>&m=<?php echo $nextmonth ?>">下一月</a>
       </h3>
    </center>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值