简易万年历php代码
时间:2022-08-05 15:47
浏览:0
评论:0
截图演示:
下面是源码,很简单:
<style type=text/css> A:link{ color:#FFFFFF; font-size:13px; } A:visited{ color:#FFFFFF; text-decoration:none; } A:hover{ text-decoration:underline; } TD{ text-align:center; font-size:12px; background-color:#E6E6E6; border: #FFFFFF solid 1px; color:#198281; height:20px; } TD.title{ background-color:#9a9a9a; color:#FFFFFF; font-weight:bold; } TABLE{ border-collapse:collapse; border-color:white; border: #198281 solid 1px; } </style> <?php date_default_timezone_set("Asia/Shanghai"); $today = time(); $year =@ $_GET["year"]; $month = @$_GET["month"]; if($year=='') $year = date("Y",$today); if($month=='') $month = date("m",$today); if((int)$month==0){$year-=1;$month=12;} $time = mktime(0,0,0,$month,1,$year); $year = date('Y',$time); $month = date('m',$time); echo "<table width=260 cellspacing=0 cellpadding=0>"; echo "<tr><td colspan=7 class=title>"; $str = "<a href=?year=".($year-1)."&month=".$month.">"; $str .= "«</a> ".$year."年 "; $str .= "<a href=?year=".($year+1)."&month=".$month.">"; $str .= "»</a> "; $str .= "<a href=?year=".$year."&month=".($month-1).">"; $str .= "«</a> ".$month."月 "; $str .= "<a href=?year=".$year."&month=".($month+1).">"; $str .= "» </a>"; echo $str; echo "</td></tr>"; echo "<tr>"; $str = "<td>一</td>"; $str .= "<td>二</td>"; $str .= "<td>三</td>"; $str .= "<td>四</td>"; $str .= "<td>五</td>"; $str .= "<td>六</td>"; $str .= "<td>七</td>"; echo $str; echo "</td>"; //这个月有多少天 $days = date('t',$time); //第一天是星期几 $fstdw = date('N',$time); //要输出多少行 $rows = ceil(($days + $fstdw-1)/7); $cd = 1; for($i=0;$i<$rows;$i++){ echo "<tr>"; for($j=0;$j<7;$j++){ echo "<td>"; if($cd >= $fstdw && $cd<$days+$fstdw){ $oday = $cd-$fstdw+1; if($oday==date('d',time())) echo "<b><u>"; echo ($cd-$fstdw+1); }else{ echo " "; } $cd++; echo "</td>"; } echo "</tr>"; } echo "</table>"; ?>
1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 帝国CMS > 简易万年历php代码
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 帝国CMS > 简易万年历php代码