PHP程序输出日历
以下代码只是简单实现日历的效果和逻辑思路,没有使用类封装,权当抛砖引玉,有兴趣的朋友可以封装起来,方便调用。
<?php /**
* PHP利用时间函数输出日历
* Rain.zen $ intval@163.com
*/ /**
* 获取关于日历的格式对应的天数
* @param $format 获取的格式[t:指定月份的天数; w:数字型的星期数(0-星期日,6-星期六)]
* @param $year 年份,例:2009
* @param $month 月份,例:03
* @param $day 日期,例:08
* @return bool|string 返回值是根据格式$format的选择决定
*/
function calenderNum($format, $year, $month, $day){
return date($format, mktime(0, 0, 0, $month, $day, $year));
} // 月份数组
$aryMonth = array('一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二'); // 当前年月日
$thenTime = date('Y-m-d');
list($thenYear, $thenMonth, $thenDay) = explode('-', $thenTime); // 是否是星期日作为开头[1:是; 0:否]
$isSunday = 0; // 日期:年份下拉控件
$year = isset($_POST['year']) ? $_POST['year'] : $thenYear;
$yearLast = 8; // 年份的前后持续周期
$selectYear = '<select name="year" onchange="this.form.submit();">';
for($i = ($year + $yearLast), $n = ($year - $yearLast); $i >= $n; $i--){
$selected = $i == $year ? ' selected="selected"' : '';
$selectYear.= '<option value="'.$i.'"'.$selected.'>'.$i.'</option>';
}
$selectYear.= '</select>'; // 日期:月份下拉控件
$month = isset($_POST['month']) ? $_POST['month'] : $thenMonth;
$selectMonth = '<select name="month" onchange="this.form.submit();">';
foreach($aryMonth as $k => $v){
$k = sprintf('%02d', ($k + 1));
$selected = $k == $month ? ' selected="selected"' : '';
$selectMonth.= '<option value="'.$k.'"'.$selected.'>'.$v.'月</option>';
}
$selectMonth.= '</select>';
unset($k, $v); // 日期:星期HTML
$aryWeek = array('一', '二', '三', '四', '五', '六');
$isSunday AND array_unshift($aryWeek, '日');
$isSunday OR array_push($aryWeek, '日');
$weekTrHtml = '<tr>';
foreach($aryWeek as $v){
$weekTrHtml.= '<td>周'.$v.'</td>';
}
$weekTrHtml.= '</tr>';
unset($v); // 以下为计算当月的天数以及前后月份作为空位补齐日历表格
$allDay = calenderNum('t', $year, $month, $thenDay); // 指定月份的天数
$monthFirstDay2weekVal = calenderNum('w', $year, $month, 1); // 指定日期的星期数
$aryDay = range(1, $allDay); // 计算第一排表格空位数以及是否需要补齐
$each = $isSunday ? 7 : 6;
$firstNum = $isSunday ? $monthFirstDay2weekVal : ($monthFirstDay2weekVal-1);
$isAddDay = $firstNum % $each; // 用上月的最后几天补齐空位数
if($isAddDay != 0 ){
$prevMonth = intval($month) - 1;
$prevMonthDay = calenderNum('t', $year, $prevMonth, 1); // 计算上月的总天数
$aryFirst = range($prevMonthDay - $firstNum + 1, $prevMonthDay);
$aryDay = array_merge($aryFirst, $aryDay);
} // 计算最后一排表格空位数以及是否需要补齐
$lastNum = count($aryDay) % 7;
$lastNum == 0 OR $aryLast = range(1, (7 - $lastNum));
isset($aryLast) AND $aryDay = array_merge($aryDay, $aryLast); // 循环输出日期的表格
$x = count($aryDay) / 7;
$y = 1;
$dayTrHtml = '<tr>';
foreach($aryDay as $i => $rsDay){ $strDay = str_pad($rsDay,2,'0',STR_PAD_LEFT);
$dayOass = ($i < $firstNum || $i >= $firstNum + $allDay) ? ' class="z-pass"' : '' ; // 把非本月的日期变为灰色
$dayOn = ($thenYear == $year && $thenMonth == $month && $strDay == $thenDay && empty($dayOass)) ? ' class="z-on"' : ''; // 对当前的日期加亮显示 $dayTrHtml.= '<td'.$dayOn.$dayOass.'>'.$strDay.'</td>';
if(($i + 1) % 7 == 0){
$x == $y OR $dayTrHtml.= '</tr>'.'<tr>';
$y++;
}
}
$dayTrHtml.= '</tr>';
?>
模板HTML代码
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>PHP程序输出日历</title>
<style type="text/css">
/* global css document => author:intval@163.com */
html{height:100%;-overflow-y:scroll;border:0}body{min-height:100%;-height:100%;position:relative}
body,h1,h2,h3,h4,h5,h6,p,div,dl,dt,dd,ul,ol,li,form,button,input,textarea,th,td{margin:0;padding:0;border:0}
h1,h2,h3,h4,h5,h6,select,input,textarea,button,table{font-size:100%;font-weight:normal}
ul,ol,dl{list-style:none}a{text-decoration:none;color:#36c}u{text-decoration:none}i,em{font-style:normal}
a:hover{text-decoration:underline}a img{border:none}a,select,input,textarea{outline:none}.fr{float:right}
table{border-collapse:collapse;border-spacing:0}th{text-align:left;font-weight:normal}.fl{float:left}
.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{+zoom:1}
body{color:#000;background:#fff;font:12px/15px Microsoft YaHei} #u-calender{padding:50px 0 0 200px}
#u-calender #u-slt{font-size:14px}
#u-slt select{font:13px Verdana}
#u-calender .z-on{background:#36c;color:#fff; font-weight:700}
#u-calender .z-pass{background:#efefef;color:#ccc}
#u-calender table{ border-top:1px solid #ccc; border-right:1px solid #ccc; width:300px}
#u-calender table tr td{ border-bottom:1px solid #ccc; border-left:1px solid #ccc;text-align:center;padding:5px 0}
</style>
</head> <body>
<div id="u-calender">
<table><tr><td colspan="7" id="u-slt"><form action="" method="post">月份:<?php echo $selectMonth;?> 年份:<?php echo $selectYear;?></form></td></tr>
<?php echo $weekTrHtml.$dayTrHtml;?>
</table>
</div>
</body>
</html>
代码完成后实现的效果截图:
PHP程序输出日历的更多相关文章
- JS输出日历
页面HTML代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> &l ...
- C#输出日历
用C#输出日历,此功能可用于Ajax方式列出计划日程相关的内容,由于是C#控制输出,可以方便加上自己需要的业务处理逻辑. 1.控制台输出: using System; namespace 控制台日历 ...
- Bootstrap3 代码-程序输出
通过 <samp> 标签来标记程序输出的内容. This text is meant to be treated as sample output from a computer prog ...
- C语言 · 输出日历
算法提高 输出日历 时间限制:1.0s 内存限制:512.0MB 按照下述格式打印2006年12月日历: Calendar 2006-12---------------------- ...
- java笔记--重定向输出流实现程序输出到日志
重定向输出流实现程序输出到日志 --如果朋友您想转载本文章请注明转载地址"http://www.cnblogs.com/XHJT/p/3877248.html "谢谢-- 利用Sy ...
- 双缓冲解决控制台应用程序输出“闪屏”(C/C++,Windows)
使用 C 语言编写游戏的小伙伴们想必起初都要遇到这样的问题,在不断清屏输出数据的过程中,控制台中的输出内容会不断地闪屏.出现这个问题的原因是程序对数据处理花掉的时间影响到了数据显示,或许你可以使用局部 ...
- 用VSCode终端实现重定向比较程序输出和正确输出
在刷 OJ 题目或者进行编程考试或比赛时,经常需要对编写好的程序进行测试,即运行编写好的程序,输入样例输入或者自己编写的输入数据,查看程序输出结果和样例输出或者正确输出是否一致.这种方法有很多弊端,当 ...
- cmake指定程序输出目录和库文件输出目录和拷贝文件
概述 本文样式环境: win10+cmake 3.18 本文将介绍使用CMAKE配置项目输出目录和 LIbrary项目的输出目录 本文将介绍 cmake的file函数的基础用法之拷贝文件 重点, 这些 ...
- linux下QT程序输出乱码解决方法
参考文章:http://blog.csdn.net/jiang1013nan/article/details/6667871 http://my.oschina.net/zjlaobusi/blog/ ...
随机推荐
- 经典 SQL
经典sql 总结一些经常用到或碰到的SQL语句,希望能与大家分享,同时也希望大家能提供更多的精妙SQL语句..... 1.delete table1 from (select * from tab ...
- EXT属性
Extjs & Ext.Net 弹出整个浏览器对话框的方法 top.Ext.Msg.alert("值"); top.Ext.Msg.confirm("值" ...
- Linux挂载硬盘出错:$LogFile indicates unclean shutdown (0, 0)
前一次还挂载好好的,今天在挂载NTFS的分区就不行了,出现如下错误信息和提示: $LogFile indicates unclean shutdown (0, 0) Mount is denied b ...
- C# 获取本机IP地址以及转换字符串
/// <summary> /// IP地址转化 /// </summary> /// <param name="ipaddr">整型的IP地址 ...
- Java和PHP在Web开发方面的比较
比较 PHP和JSP这两个Web开发技术,在目前的情况是其实是比较PHP和Java的Web开发.以下是我就几个主要方面进行的比较: 一. 语言比较 PHP是解释执行的服务器脚本语言,首先php有简单容 ...
- 使用html,JavaScript,ajax写一个小型实例
//1.创建受捐单位数组 var arrOrgData = [ { "Id": 1, "OrgName": "红十字会" }, ...
- 仿淘宝TAB切换搜索框
<div class="search"> <div id="searchBox"> <ul class="tab-bar ...
- Canvas、Paint、的简单使用及辅助类(Path、Shader、简介)
1.Canvas类 作用:1.绘制各种图形.图片.字等.2.提供各种方法进行坐标变换(rotate.scale.skew.translate) 获取Canvas:一般是子类继承View并重写onDra ...
- 解析Tensorflow官方English-Franch翻译器demo
今天我们来解析下Tensorflow的Seq2Seq的demo.继上篇博客的PTM模型之后,Tensorflow官方也开放了名为translate的demo,这个demo对比之前的PTM要大了很多(首 ...
- DTU软硬件方案
经过周末的思考以及已有的经验,准备将DTU研发项目命名为QN100,确定了初步的软硬件方案,产品名称大家如果有好的名字欢迎提供. 硬件: 采用STM32F101RD为主处理器, ...