我是靠谱客的博主 谦让楼房,最近开发中收集的这篇文章主要介绍php 事件绑定,PHP 日历代码(可绑定事件),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

if(empty($year))$year=date("Y"); //初始化年份

if(empty($month))$month=date("n"); //初始化月份

$wd_ar=array("日","一","二","三","四","五","六"); //星期数组

$wd=date("w",mktime(0,0,0,$month,1,$year)); //当月第一天是星期几

//年链接

$y_lnk1=$year<=1970?$year=1970:$year-1;

$y_lnk2=$year>=2037?$year=2037:$year+1;

//月链接

$m_lnk1=$month<=1?$month=1:$month-1;

$m_lnk2=$month>=12?$month=12:$month+1;

echo <<< EOT

< $year 年 >< $month 月 >

EOT;

for($i=0;$i<7;$i++) {

print "

$wd_ar[$i] ";

}

print "

";

$tnum=$wd+date("t",mktime(0,0,0,$month,1,$year));

for($i=0;$i

$date=$i+1;

if($i%7==0) print '

';

print '

';

if($i>=$wd) print $date-$wd;

print "

";

if($i%7==6) print "

";

}

if($i%7<6 && $i%7>0) print '

';

if($i%7==6) print "

";

print '

';

?>

最后

以上就是谦让楼房为你收集整理的php 事件绑定,PHP 日历代码(可绑定事件)的全部内容,希望文章能够帮你解决php 事件绑定,PHP 日历代码(可绑定事件)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部