php simple calendar function, php calendar_PHP tutorial
php simple calendar function, php calendar
The example in this article describes the calendar program implemented in php. Share it with everyone for your reference. The details are as follows:
<?php /* * php 输出日历程序 */ header("Content-type: text/html;charset=utf-8"); $year=(!isset($_GET['year'])||$_GET['year']=="")?date("Y"):$_GET['year']; $month=(!isset($_GET['month'])||$_GET['month']=="")?date("n"):$_GET['month']; $curUrl=$_SERVER['PHP_SELF']; if($year<1971){ echo "出错!"; echo "<BR>"; echo "<a href=",$curUrl,">Back</a>"; exit(); } ?> <table width="200" border="1" cellspacing="0" cellpadding="0" bordercolor="#E7E7E7" style="font-size:12px;" align="center"> <tr align="center"><td colspan="2"> <?php //<-------当月份超出1至12时的处理;开始-------> if($month<1){ $month=12; $year-=1; } if($month>12){ $month=1; $year+=1; } //<-------当月份超出1至12时的处理;结束-------> //<---------上一年,下一年,上月,下月的连接处理及输出;开始---------> echo "<a href=",$curUrl,"?year=".($year-1)."&month=".$month."><<</a>年<a href=",$curUrl,"?year=".($year+1)."&month=".$month.">>></a>"; ?> </td><td colspan="3"><?php echo $year."年".$month."月";?> </td><td colspan="2"> <?php echo "<a href=",$curUrl,"?month=".($month-1)."&year=".$year."><<</a>月<a href=",$curUrl,"?month=".($month+1)."&year=".$year.">>></a>"; //<--------上一年,下一年,上月,下月的连接处理及输出;结束---------> ?></td></tr> <tr align=center><td><font color="red">日</font></td><td>一</td><td>二</td><td>三</td><td>四</td><td>五</td><td>六</td></tr><tr> <?php $d=date("d"); $FirstDay=date("w",mktime(0,0,0,$month,1,$year));//取得任何一个月的一号是星期几,用于计算一号是由表格的第几格开始 $bgtoday=date("d"); function font_color($month,$today,$year){//用于计算星期天的字体颜色 $sunday=date("w",mktime(0,0,0,$month,$today,$year)); if($sunday=="0"){ $FontColor="red"; }else{ $FontColor="black"; } return $FontColor; } function bgcolor($month,$bgtoday,$today_i,$year){//用于计算当日的背景颜色 $show_today=date("d",mktime(0,0,0,$month,$today_i,$year)); $sys_today=date("d",mktime(0,0,0,$month,$bgtoday,$year)); if($show_today==$sys_today){ $bgcolor="bgcolor=#6699FF"; }else{ $bgcolor=""; } return $bgcolor; } function font_style($month,$today,$year){//用于计算星期天的字体风格 $sunday=date("w",mktime(0,0,0,$month,$today,$year)); if($sunday=="0"){ $FontStyle="<strong>"; }else{ $Font; } return $FontStyle; } for($i=0;$i<=$FirstDay;$i++){//此for用于输出某个月的一号位置 for($i;$i<$FirstDay;$i++){ echo "<td align=center> </td>\n"; } if($i==$FirstDay){ echo "<td align=center ".bgcolor($month,$bgtoday,1,$year)."><font color=".font_color($month,1,$year).">".font_style($month,1,$year)."1</font></td>\n"; if($FirstDay==6){//判断1号是否星期六 echo "</tr>"; } } } $countMonth=date("t",mktime(0,0,0,$month,1,$year));//某月的总天数 for($i=2;$i<=$countMonth;$i++){//输出由1号定位,随后2号直至月尾的所有号数 echo "<td align=center ".bgcolor($month,$bgtoday,$i,$year)."><font color=".font_color($month,$i,$year).">".font_style($month,$i,$year)."$i</font></td>\n"; if(date("w",mktime(0,0,0,$month,$i,$year))==6){//判断该日是否星期六 echo "</tr>\n"; } } ?> </table>
The calendar effect output by php is as follows:
I hope this article will be helpful to everyone in learning PHP programming.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
