用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 搭載アプリ

AI Clothes Remover
写真から衣服を削除するオンライン AI ツール。

Undress AI Tool
脱衣画像を無料で

Clothoff.io
AI衣類リムーバー

AI Hentai Generator
AIヘンタイを無料で生成します。

人気の記事
R.E.P.O.説明されたエネルギー結晶と彼らが何をするか(黄色のクリスタル)
3週間前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最高のグラフィック設定
3週間前By尊渡假赌尊渡假赌尊渡假赌
アサシンのクリードシャドウズ:シーシェルリドルソリューション
2週間前ByDDD
R.E.P.O.誰も聞こえない場合はオーディオを修正する方法
3週間前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:Myriseのすべてのロックを解除する方法
3週間前By尊渡假赌尊渡假赌尊渡假赌

ホットツール

MinGW - Minimalist GNU for Windows
このプロジェクトは osdn.net/projects/mingw に移行中です。引き続きそこでフォローしていただけます。 MinGW: GNU Compiler Collection (GCC) のネイティブ Windows ポートであり、ネイティブ Windows アプリケーションを構築するための自由に配布可能なインポート ライブラリとヘッダー ファイルであり、C99 機能をサポートする MSVC ランタイムの拡張機能が含まれています。すべての MinGW ソフトウェアは 64 ビット Windows プラットフォームで実行できます。

PhpStorm Mac バージョン
最新(2018.2.1)のプロフェッショナル向けPHP統合開発ツール

SublimeText3 中国語版
中国語版、とても使いやすい

SublimeText3 英語版
推奨: Win バージョン、コードプロンプトをサポート!

ゼンドスタジオ 13.0.1
強力な PHP 統合開発環境
