PHP output calendar table code example _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
PHP outputs a calendar table code instance. PHP output calendar table code example this article mainly introduces PHP output calendar table code examples. This article provides code examples directly. if you need a friend, can you refer? 123456789101112 PHP output calendar table code example

This article mainly introduces the PHP output calendar table code example. This article provides the code example directly. For more information, see

?

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

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

Calendar

$ MONTH = array ("lunar January", "January", "February", "March", "April", "May", "June", "July ", "May August", "May September", "May October", "May November", "May December ");

$ EnMONTH = array ("lunar January", "January", "February", "Marcy", "Jun L", "May", "June", "July ", "August", "September", "October", "November", "December ");

$ WEEK = array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday ");

$ BACKCOLOR = array ("# FFC", "# FFF", "#9F6", "# FFC", "#6F0", "#6F6", "# F90 ", "# F06", "# F00", "# FC3", "# FF6", "# F99 ");

Function PrintMon ($ year, $ mon)

{

Date_default_timezone_set ("Asia/Shanghai ");

Global $ MONTH;

Global $ enMONTH;

Global $ WEEK;

Global $ BACKCOLOR;

$ Startdate = strtotime ("1 $ enMONTH [$ mon] $ year"); // Obtain the year and month of the query.

$ Enddate = strtotime ("+ 1 month", $ startdate); // Obtain the start date of the next month as the end time of the calendar output.

$ TheDate = getdate ($ startdate); // Convert the date to the string format

$ Color = $ BACKCOLOR [$ mon]; // sets the background color of the calendar.

Echo ("

$ Ym = $ year. "year". $ MONTH [$ mon];

Echo ("

Echo ("

For ($ I = 0; $ I <7; $ I ++) // outputs the day of the week

{

Echo ("

}

Echo ("

$ TheWeek = $ theDate [wday]; // determines the day of the week.

For ($ I = 0; $ I <6; $ I ++)

{

Echo ("

For ($ j = 0; $ j <7; $ j ++)

{

Echo ("

}

Echo ("

If ($ startdate = $ enddate) // if all dates have been output, end the cycle

{

$ I = 6;

}

}

Echo ("

?>

$ Month = $ _ POST ['mymonth'];

If (is_numeric ($ year) & $ year> = 1970 & $ year <2038)

{

If (is_numeric ($ month) & $ month >=1 & $ month <= 12)

{

PrintMon ($ year, $ month );

}

Else if ($ month! = NULL)

{

Echo ("The month is incorrect "."
");

}

}

Else if ($ year! = NULL)

{

Echo ("The year is incorrect "."
");

}

?>

}

$ Year = $ _ POST ['myyear'];

"); "); "); "); "); "); "); ");
$ Ym
");

Echo ("$ WEEK [$ I]");

Echo ("

");

If ($ startdate <$ enddate & $ theWeek = $ j) // output the date to the column of the corresponding day of the week, and be sure not to exceed the date of this month

{

$ TheDay = $ theDate [mday];

Echo ("$ theDay ");

$ Startdate = strtotime ("+ 1 day", $ startdate); // one day before the date

$ TheDate = getdate ($ startdate); // update the date

$ TheWeek = ($ theWeek + 1) % 7; // update week

}

Echo ("

Workshop this article mainly introduces PHP output calendar table code examples. This article provides code examples directly. if you need a friend, can you refer? 1 2 3 4 5 6 7 8 9 10 11 12...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.