代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
PHP
】
PHP生成日历
作者:
RickyFeng
/ 发布于
2011/9/18
/
1459
<div><?php class Calendar { private $year; private $month; private $weeks = array('日','一','二','三','四','五','六'); function __construct($options = array()) { $this->year = date('Y'); $this->month = date('m'); $vars = get_class_vars(get_class($this)); foreach ($options as $key=>$value) { if (array_key_exists($key, $vars)) { $this->$key = $value; } } } function display() { echo '<table class="calendar">'; $this->showChangeDate(); $this->showWeeks(); $this->showDays($this->year,$this->month); echo '</table>'; } private function showWeeks() { echo '<tr>'; foreach($this->weeks as $title) { echo '<th>'.$title.'</th>'; } echo '</tr>'; } private function showDays($year, $month) { $firstDay = mktime(0, 0, 0, $month, 1, $year); $starDay = date('w', $firstDay); $days = date('t', $firstDay);</div> <div> echo '<tr>'; for ($i=0; $i<$starDay; $i++) { echo '<td> </td>'; } for ($j=1; $j<=$days; $j++) { $i++; if ($j == date('d')) { echo '<td class="today">'.$j.'</td>'; } else { echo '<td>'.$j.'</td>'; } if ($i % 7 == 0) { echo '</tr><tr>'; } } echo '</tr>'; } private function showChangeDate() { $url = basename($_SERVER['PHP_SELF']); echo '<tr>'; echo '<td><a href="?'.$this->preYearUrl($this->year,$this->month).'">'.'<<'.'</a></td>'; echo '<td><a href="?'.$this->preMonthUrl($this->year,$this->month).'">'.'<'.'</a></td>'; echo '<td colspan="3"><form>'; echo '<select name="year" onchange="window.location=\''.$url.'?year=\'+this.options[selectedIndex].value+\'&month='.$this->month.'\'">'; for($ye=1970; $ye<=2038; $ye++) { $selected = ($ye == $this->year) ? 'selected' : ''; echo '<option '.$selected.' value="'.$ye.'">'.$ye.'</option>'; } echo '</select>'; echo '<select name="month" onchange="window.location=\''.$url.'?year='.$this->year.'&month=\'+this.options[selectedIndex].value+\'\'">'; </div> <div> for($mo=1; $mo<=12; $mo++) { $selected = ($mo == $this->month) ? 'selected' : ''; echo '<option '.$selected.' value="'.$mo.'">'.$mo.'</option>'; } echo '</select>'; echo '</form></td>'; echo '<td><a href="?'.$this->nextMonthUrl($this->year,$this->month).'">'.'>'.'</a></td>'; echo '<td><a href="?'.$this->nextYearUrl($this->year,$this->month).'">'.'>>'.'</a></td>'; echo '</tr>'; } private function preYearUrl($year,$month) { $year = ($this->year <= 1970) ? 1970 : $year - 1 ; return 'year='.$year.'&month='.$month; } private function nextYearUrl($year,$month) { $year = ($year >= 2038)? 2038 : $year + 1; return 'year='.$year.'&month='.$month; } private function preMonthUrl($year,$month) { if ($month == 1) { $month = 12; $year = ($year <= 1970) ? 1970 : $year - 1 ; } else { $month--; } return 'year='.$year.'&month='.$month; } private function nextMonthUrl($year,$month) { if ($month == 12) { $month = 1; $year = ($year >= 2038) ? 2038 : $year + 1; }else{ $month++; } return 'year='.$year.'&month='.$month; } }
试试其它关键字
生成日历
同语言下
.
用net匹配并替换iOS标准的emoji表情符号
.
处理带Emoji表情的的字符串
.
获取微信昵称时 过滤特殊字符
.
通过判断上传文件的头字符来判断文件的类型
.
模拟百度URL加密解密算法
.
以太坊检查地址是否合法
.
实现crontab解析类
.
获取每个月的开始和结束时间
.
图片上传工具类
.
APP手机应用信息采集
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
RickyFeng
贡献的其它代码
(
4
)
.
内网linux获取出口公网ip
.
高并发下写文件
.
无级创建目录
.
PHP生成日历
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3