用PHP生成日历
1. [文件] calendar.class.php
<?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); 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+\'\'">'; 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; } }
2. [文件] demo.php
<?php $params = array(); if (isset($_GET['year']) && isset($_GET['month'])) { $params = array( 'year' => $_GET['year'], 'month' => $_GET['month'], ); } $params['url'] = 'demo.php'; require_once 'calendar.class.php'; ?> <html> <head> <title>日历demo</title> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8" /> <style type="text/css"> table.calendar { border: 1px solid #050; } .calendar th, .calendar td { width:30px; text-align:center; } .calendar th { background-color:#050; color:#fff; } .today{ color:#fff; background-color:#050; } </style> </head> <body> <p style="align:center"> <?php $cal = new Calendar($params); $cal->display(); ?> </p> </body> </html>
3. [图片] sample.jpg
声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
刺客信条阴影:贝壳谜语解决方案
3 周前ByDDD
Windows 11 KB5054979中的新功能以及如何解决更新问题
2 周前ByDDD
在哪里可以找到原子中的起重机控制钥匙卡
3 周前ByDDD
节省R.E.P.O.解释(并保存文件)
1 个月前By尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影 - 如何找到铁匠,解锁武器和装甲定制
3 周前ByDDD

热工具

SublimeText3汉化版
中文版,非常好用

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

Dreamweaver CS6
视觉化网页开发工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

禅工作室 13.0.1
功能强大的PHP集成开发环境