Home Backend Development PHP Tutorial PHP设计年历类一 (38)

PHP设计年历类一 (38)

Jun 13, 2016 pm 12:20 PM
gt lt this year

PHP设计日历类一 (38)

由两个文件组成:

第一个test.php

1

<style><span style="color: #000000;">    table {        border:1px solid #<span style="color: #800080;">050<span style="color: #000000;">;    }    .fontb {        color:white;        background:blue;    }        th {        width:30px;    }    td,th {        height:30px;        text-<span style="color: #000000;">align:center;            }    form {        margin:0px;        padding:0px;    }</style><span style="color: #000000;">php    include </span><span style="color: #800000;">"</span><span style="color: #800000;">calendar.class.php</span><span style="color: #800000;">"</span><span style="color: #000000;">;    $calendar</span>=<span style="color: #0000ff;">new</span><span style="color: #000000;"> Calendar;    $calendar</span>-><span style="color: #0000ff;">out</span>();

Copy after login

第二个日历类:calendar.class.php

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

<span style="color: #000000;">php</span><span style="color: #0000ff;">class</span><span style="color: #000000;"> Calendar {        </span><span style="color: #0000ff;">private</span> $year; <span style="color: #008000;">//</span><span style="color: #008000;">当前的年</span>        <span style="color: #0000ff;">private</span> $month; <span style="color: #008000;">//</span><span style="color: #008000;">当前的月</span>        <span style="color: #0000ff;">private</span> $start_weekday; <span style="color: #008000;">//</span><span style="color: #008000;">当月的第一天对应的是周几</span>        <span style="color: #0000ff;">private</span> $days; <span style="color: #008000;">//</span><span style="color: #008000;">当前月一共多少天</span><span style="color: #000000;">        function __construct(){            $</span><span style="color: #0000ff;">this</span>->year=isset($_GET[<span style="color: #800000;">"</span><span style="color: #800000;">year</span><span style="color: #800000;">"</span>]) ? $_GET[<span style="color: #800000;">"</span><span style="color: #800000;">year</span><span style="color: #800000;">"</span>] : date(<span style="color: #800000;">"</span><span style="color: #800000;">Y</span><span style="color: #800000;">"</span><span style="color: #000000;">);            $</span><span style="color: #0000ff;">this</span>->month=isset($_GET[<span style="color: #800000;">"</span><span style="color: #800000;">month</span><span style="color: #800000;">"</span>]) ? $_GET[<span style="color: #800000;">"</span><span style="color: #800000;">month</span><span style="color: #800000;">"</span>] : date(<span style="color: #800000;">"</span><span style="color: #800000;">m</span><span style="color: #800000;">"</span><span style="color: #000000;">);                        $</span><span style="color: #0000ff;">this</span>->start_weekday=date(<span style="color: #800000;">"</span><span style="color: #800000;">w</span><span style="color: #800000;">"</span>, mktime(<span style="color: #800080;">0</span>, <span style="color: #800080;">0</span>, <span style="color: #800080;">0</span>, $<span style="color: #0000ff;">this</span>->month, <span style="color: #800080;">1</span>, $<span style="color: #0000ff;">this</span>-><span style="color: #000000;">year));            $</span><span style="color: #0000ff;">this</span>->days=date(<span style="color: #800000;">"</span><span style="color: #800000;">t</span><span style="color: #800000;">"</span>, mktime(<span style="color: #800080;">0</span>, <span style="color: #800080;">0</span>, <span style="color: #800080;">0</span>, $<span style="color: #0000ff;">this</span>->month, <span style="color: #800080;">1</span>, $<span style="color: #0000ff;">this</span>-><span style="color: #000000;">year));        }        function </span><span style="color: #0000ff;">out</span><span style="color: #000000;">(){            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><table align="center">

<span style="color: #800000;">'</span><span style="color: #000000;">;            $</span><span style="color: #0000ff;">this</span>->chageDate(<span style="color: #800000;">"</span><span style="color: #800000;">test.php</span><span style="color: #800000;">"</span><span style="color: #000000;">);            $</span><span style="color: #0000ff;">this</span>-><span style="color: #000000;">weeksList();            $</span><span style="color: #0000ff;">this</span>-><span style="color: #000000;">daysList();            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span>

</table></span><span style="color: #800000;">'</span><span style="color: #000000;">;        }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function weeksList(){            $week</span>=array(<span style="color: #800000;">'</span><span style="color: #800000;">日</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">一</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">二</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">三</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">四</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">五</span><span style="color: #800000;">'</span>,<span style="color: #800000;">'</span><span style="color: #800000;">六</span><span style="color: #800000;">'</span><span style="color: #000000;">);            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><tr>

<span style="color: #800000;">'</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">for</span>($i=<span style="color: #800080;">0</span>; $i<count style="color: #000000;">)                echo <span style="color: #800000;">'</span><span style="color: #800000;"></span><th class="fontb">

<span style="color: #800000;">'</span>.$week[$i].<span style="color: #800000;">'</span><span style="color: #800000;"></span>

</th>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span></count>

</tr></span><span style="color: #800000;">'</span><span style="color: #000000;">;        }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function daysList(){            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><tr>

<span style="color: #800000;">'</span><span style="color: #000000;">;            </span><span style="color: #008000;">//</span><span style="color: #008000;">输出空格(当前一月第一天前面要空出来)</span>            <span style="color: #0000ff;">for</span>($j=<span style="color: #800080;">0</span>; $jthis->start_weekday; $j++<span style="color: #000000;">)                echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td> </td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">for</span>($k=<span style="color: #800080;">1</span>; $kthis->days; $k++<span style="color: #000000;">){                $j</span>++<span style="color: #000000;">;                </span><span style="color: #0000ff;">if</span>($k==date(<span style="color: #800000;">'</span><span style="color: #800000;">d</span><span style="color: #800000;">'</span><span style="color: #000000;">))                    echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td class="fontb">

<span style="color: #800000;">'</span>.$k.<span style="color: #800000;">'</span><span style="color: #800000;"></span>

</td>

<span style="color: #800000;">'</span><span style="color: #000000;">;                </span><span style="color: #0000ff;">else</span><span style="color: #000000;">                    echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td>

<span style="color: #800000;">'</span>.$k.<span style="color: #800000;">'</span><span style="color: #800000;"></span>

</td>

<span style="color: #800000;">'</span><span style="color: #000000;">;                </span><span style="color: #0000ff;">if</span>($j%<span style="color: #800080;">7</span>==<span style="color: #800080;">0</span><span style="color: #000000;">)                    echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span>

</tr>

<tr>

<span style="color: #800000;">'</span><span style="color: #000000;">;                            }            </span><span style="color: #008000;">//</span><span style="color: #008000;">后面几个空格</span>            <span style="color: #0000ff;">while</span>($j%<span style="color: #800080;">7</span>!==<span style="color: #800080;">0</span><span style="color: #000000;">){                echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td> </td>

<span style="color: #800000;">'</span><span style="color: #000000;">;                $j</span>++<span style="color: #000000;">;            }            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span>

</tr></span><span style="color: #800000;">'</span><span style="color: #000000;">;        }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function prevYear($year, $month){            $year</span>=$year-<span style="color: #800080;">1</span><span style="color: #000000;">;                        </span><span style="color: #0000ff;">if</span>($year 1970<span style="color: #000000;">)                $year </span>= <span style="color: #800080;">1970</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">return</span> <span style="color: #800000;">"</span><span style="color: #800000;">year={$year}&month={$month}</span><span style="color: #800000;">"</span><span style="color: #000000;">;            }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function prevMonth($year, $month){            </span><span style="color: #0000ff;">if</span>($month == <span style="color: #800080;">1</span><span style="color: #000000;">) {                $year </span>= $year -<span style="color: #800080;">1</span><span style="color: #000000;">;                        </span><span style="color: #0000ff;">if</span>($year 1970<span style="color: #000000;">)                    $year </span>= <span style="color: #800080;">1970</span><span style="color: #000000;">;                $month</span>=<span style="color: #800080;">12</span><span style="color: #000000;">;            }</span><span style="color: #0000ff;">else</span><span style="color: #000000;">{                $month</span>--<span style="color: #000000;">;            }            </span><span style="color: #0000ff;">return</span> <span style="color: #800000;">"</span><span style="color: #800000;">year={$year}&month={$month}</span><span style="color: #800000;">"</span><span style="color: #000000;">;            }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function nextYear($year, $month){            $year </span>= $year + <span style="color: #800080;">1</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">if</span>($year > <span style="color: #800080;">2038</span><span style="color: #000000;">)                $year </span>= <span style="color: #800080;">2038</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">return</span> <span style="color: #800000;">"</span><span style="color: #800000;">year={$year}&month={$month}</span><span style="color: #800000;">"</span><span style="color: #000000;">;            }        </span><span style="color: #0000ff;">private</span><span style="color: #000000;"> function nextMonth($year, $month){            </span><span style="color: #0000ff;">if</span>($month==<span style="color: #800080;">12</span><span style="color: #000000;">){                $year</span>++<span style="color: #000000;">;                </span><span style="color: #0000ff;">if</span>($year > <span style="color: #800080;">2038</span><span style="color: #000000;">)                    $year</span>=<span style="color: #800080;">2038</span><span style="color: #000000;">;                $month</span>=<span style="color: #800080;">1</span><span style="color: #000000;">;            }</span><span style="color: #0000ff;">else</span><span style="color: #000000;">{                $month</span>++<span style="color: #000000;">;            }                        </span><span style="color: #0000ff;">return</span> <span style="color: #800000;">"</span><span style="color: #800000;">year={$year}&month={$month}</span><span style="color: #800000;">"</span><span style="color: #000000;">;            }        </span><span style="color: #0000ff;">private</span> function chageDate($url=<span style="color: #800000;">""</span><span style="color: #000000;">){            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><tr>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td><a href="?</span><span%20style=" color:>'.$<span style="color: #0000ff;">this</span>->prevYear($<span style="color: #0000ff;">this</span>->year, $<span style="color: #0000ff;">this</span>->month).<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"></span></span></a></td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td><a href="?</span><span%20style=" color:>'.$<span style="color: #0000ff;">this</span>->prevMonth($<span style="color: #0000ff;">this</span>->year, $<span style="color: #0000ff;">this</span>->month).<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"></span></span></a></td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td colspan="3">

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><form></form></span><span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><select name="year" onchange="window.location=\'</span><span style=" color:>'</select></span>.$url.<span style="color: #800000;">'</span><span style="color: #800000;">?year=\'+this.options[selectedIndex].value+\'&month=</span><span style="color: #800000;">'</span>.$<span style="color: #0000ff;">this</span>->month.<span style="color: #800000;">'</span><span style="color: #800000;">\'"></span><span style="color: #800000;">'</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">for</span>($sy=<span style="color: #800080;">1970</span>; $sy 2038; $sy++<span style="color: #000000;">){                $selected </span>= ($sy==$<span style="color: #0000ff;">this</span>->year) ? <span style="color: #800000;">"</span><span style="color: #800000;">selected</span><span style="color: #800000;">"</span> : <span style="color: #800000;">""</span><span style="color: #000000;">;                echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><option>

<span style="color: #800000;">'</span>.$selected.<span style="color: #800000;">'</span><span style="color: #800000;"> value="</span><span style="color: #800000;">'</span>.$sy.<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.$sy.<span style="color: #800000;">'</span><span style="color: #800000;"></span>

</option></span><span style="color: #800000;">'</span><span style="color: #000000;">;            }            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><select name="month" onchange="window.location=\'</span><span style=" color:>'</select></span>.$url.<span style="color: #800000;">'</span><span style="color: #800000;">?year=</span><span style="color: #800000;">'</span>.$<span style="color: #0000ff;">this</span>->year.<span style="color: #800000;">'</span><span style="color: #800000;">&month=\'+this.options[selectedIndex].value"></span><span style="color: #800000;">'</span><span style="color: #000000;">;            </span><span style="color: #0000ff;">for</span>($sm=<span style="color: #800080;">1</span>; $sm12; $sm++<span style="color: #000000;">){                $selected1 </span>= ($sm==$<span style="color: #0000ff;">this</span>->month) ? <span style="color: #800000;">"</span><span style="color: #800000;">selected</span><span style="color: #800000;">"</span> : <span style="color: #800000;">""</span><span style="color: #000000;">;                echo </span><span style="color: #800000;">'</span><span style="color: #800000;"><option>

<span style="color: #800000;">'</span>.$selected1.<span style="color: #800000;">'</span><span style="color: #800000;"> value="</span><span style="color: #800000;">'</span>.$sm.<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.$sm.<span style="color: #800000;">'</span><span style="color: #800000;"></span>

</option></span><span style="color: #800000;">'</span><span style="color: #000000;">;            }            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><span style="color: #800000;">'</span><span style="color: #000000;">;                echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span>

</td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td><a href="?</span><span%20style=" color:>'.$<span style="color: #0000ff;">this</span>->nextYear($<span style="color: #0000ff;">this</span>->year, $<span style="color: #0000ff;">this</span>->month).<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;">>></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"></span></a></td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span><td><a href="?</span><span%20style=" color:>'.$<span style="color: #0000ff;">this</span>->nextMonth($<span style="color: #0000ff;">this</span>->year, $<span style="color: #0000ff;">this</span>->month).<span style="color: #800000;">'</span><span style="color: #800000;">"></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;">></span><span style="color: #800000;">'</span>.<span style="color: #800000;">'</span><span style="color: #800000;"></span></a></td>

<span style="color: #800000;">'</span><span style="color: #000000;">;            echo </span><span style="color: #800000;">'</span><span style="color: #800000;"></span>

</tr></span><span style="color: #800000;">'</span><span style="color: #000000;">;        }    }</span>

Copy after login

 效果:

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Fix: Snipping tool not working in Windows 11 Fix: Snipping tool not working in Windows 11 Aug 24, 2023 am 09:48 AM

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

How to Fix Can't Connect to App Store Error on iPhone How to Fix Can't Connect to App Store Error on iPhone Jul 29, 2023 am 08:22 AM

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Let's talk about why Vue2 can access properties in various options through this Let's talk about why Vue2 can access properties in various options through this Dec 08, 2022 pm 08:22 PM

This article will help you interpret the vue source code and introduce why you can use this to access properties in various options in Vue2. I hope it will be helpful to everyone!

An article that understands this point and catches up with 70% of front-end people An article that understands this point and catches up with 70% of front-end people Sep 06, 2022 pm 05:03 PM

A colleague got stuck due to a bug pointed by this. Vue2’s this pointing problem caused an arrow function to be used, resulting in the inability to get the corresponding props. He didn't know it when I introduced it to him, and then I deliberately looked at the front-end communication group. So far, at least 70% of front-end programmers still don't understand it. Today I will share with you this link. If everything is wrong If you haven’t learned it yet, please give me a big mouth.

Is watch4pro better or gt? Is watch4pro better or gt? Sep 26, 2023 pm 02:45 PM

Watch4pro and gt each have different features and applicable scenarios. If you focus on comprehensive functions, high performance and stylish appearance, and are willing to bear a higher price, then Watch 4 Pro may be more suitable. If you don’t have high functional requirements and pay more attention to battery life and reasonable price, then the GT series may be more suitable. The final choice should be decided based on personal needs, budget and preferences. It is recommended to carefully consider your own needs before purchasing and refer to the reviews and comparisons of various products to make a more informed choice.

请教怎么修改url某一参数的参数值呢?是要拆开了再拼回去吗 请教怎么修改url某一参数的参数值呢?是要拆开了再拼回去吗 Jun 13, 2016 am 10:24 AM

请问如何修改url某一参数的参数值呢?是要拆开了再拼回去吗?那么请问如何修改url某一参数的参数值呢?是要拆开了再拼回去吗?http://127.0.0.1/myo/newuser.php?mod=search&type=fastone比如现在我要修改mod=new要怎么做呢?------解决方案--------------------发送了请求

See all articles