各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案

Str Tom,为分享PHP技术和解决方案,贡献一份自己的力量!
收藏本站(不迷路),每天更新好文章!
当前位置:首页 > CMS教程 > PHP

2010年10月日历PHP生成月历代码

管理员 2023-09-05
PHP
122

2010年10月日历PHP生成月历代码

内容导读

收集整理的这篇技术教程文章主要介绍了2010年10月日历PHP生成月历代码,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含2538字,纯文字阅读大概需要4分钟

内容图文

/*
Function Written by Nelson Neoh @3/2004.
For those who wants to utilize this code, please do not remove this remark.
If you have done any enhancement to this code, please post the copy at http://www.dev-club.com PHP board. Thank you.
Function usage: calendar(Month,Year)
*/
function calendar($MM,$YYYY){
if($MM=="") $MM = date("m");
if($YYYY=="") $YYYY = date("Y");
if(checkdate($MM,1,$YYYY)){
$stringDate = strftime("%d %b %Y",mktime (0,0,0,$MM,1,$YYYY));
$days = strftime("%d",mktime (0,0,0,$MM+1,0,$YYYY));
$firstDay = strftime("%w",mktime (0,0,0,$MM,1,$YYYY));
$lastDay = strftime("%w",mktime (0,0,0,$MM,$days,$YYYY));
$printDays = $days;
$preMonth = strftime("%m",mktime (0,0,0,$MM-1,1,$YYYY));
$preYear = strftime("%Y",mktime (0,0,0,$MM-1,1,$YYYY));
$nextMonth = strftime("%m",mktime (0,0,0,$MM+1,1,$YYYY));
$nextYear = strftime("%Y",mktime (0,0,0,$MM+1,1,$YYYY));
print("");
print("");
print("");
print("");
print("<tr style="font-family: Verdana; font-size:x-small">");
print("");
$currentDays = 1;
for($a=1;$a<=5;$a++){
print("<tr align="left" valign="top" style="font-family: Verdana; font-size:x-small">");
$diffDays = $firstDay-$lastDay;
if($firstDay>$lastDay && $currentDays ==1 && ($diffDays<>1)){
for($x=$lastDay;$x>=0;$x--){
$printDays = $days-$x;
print("");
}
for($z=1;$z<$firstDay-$lastDay;$z++){
print("");
}
for($y=$firstDay;$y<7;$y++){
print("");
$currentDays++;
}
} elseif($firstDay!=0 && $currentDays==1){
for($z=1;$z<=$firstDay;$z++){
print("");
}
for($y=$firstDay;$y<7;$y++){
print("");
$currentDays++;
}
} else {
for($u=1;$u<=7 && $currentDays<=$days;$u++){
print("");
$currentDays++;
}
}
print("");
}
print("
P".strftime("%b %Y",mktime (0,0,0,$MM,1,$YYYY))."N
SunMonTueWedThuFriSat$printDays $currentDays $currentDays$currentDays
");
}
}
?>

以上就介绍了2010年10月日历 PHP生成月历代码,包括了2010年10月日历方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

内容总结

以上是为您收集整理的2010年10月日历PHP生成月历代码全部内容,希望文章能够帮你解决2010年10月日历PHP生成月历代码所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。

内容备注

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部