- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章PHP实现简单日历类编写由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
用PHP实现日历类的编写,供大家参考,具体内容如下 。
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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<?php
/*
* 创建一个日历类
*
*
*/
//修改默认时区
date_default_timezone_set(
"PRC"
);
class
Calendar {
private
$year
;
private
$month
;
private
$day
;
//当月总天数
private
$first_week
;
//每月的第一天是星期几
//构造函数
function
__construct() {
$this
->year = isset(
$_GET
[
'year'
])?
$_GET
[
'year'
]:
date
(
"Y"
);
$this
->month = isset(
$_GET
[
"month"
])?
$_GET
[
"month"
]:
date
(
"m"
);
$this
->first_week =
date
(
"w"
,
mktime
(0, 0 ,0,
$this
->month, 1,
$this
->year));
$this
->day =
date
(
"t"
,
mktime
(0, 0 ,0,
$this
->month, 1,
$this
->year));
}
function
showCalendar() {
// echo $this->year."年".$this->month."月".$this->first_week."天".$this->day;
echo
"<table align='center'>"
;
//用表格输出
$this
->chageDate(
"index.php"
);
//用于用户调整年月份
$this
->weekList();
//显示星期
$this
->dayList();
//显示天数
echo
"</table>"
;
}
//1、显示星期
private
function
weekList() {
$week
=
array
(
"日"
,
"一"
,
"二"
,
"三"
,
"四"
,
"五"
,
"六"
);
echo
"<tr>"
;
for
(
$i
= 0;
$i
<
count
(
$week
);
$i
++) {
echo
"<th>"
.
$week
[
$i
].
"</th>"
;
}
echo
"</tr>"
;
}
//2.显示天数
private
function
dayList() {
$color
=
"#2ca50c"
;
echo
"<tr>"
;
for
(
$i
= 0;
$i
<
$this
->first_week;
$i
++) {
//输出空格,弥补当前月空缺部分
echo
"<td bgcolor='#2ca50c'> </td>"
;
}
for
(
$k
= 1;
$i
<=
$this
->day;
$k
++) {
$i
++;
if
(
$k
==
date
(
"d"
))
echo
"<td id='nowd'>"
.
$k
.
"</td>"
;
//是今天,加效果
else
echo
"<td bgcolor=$color>"
.
$k
.
"</td>"
;
if
(
$i
% 7 == 0) {
echo
"</tr><tr>"
;
//每7天一次换行
if
(
$i
% 2 == 0)
$color
=
"#2ca50c"
;
else
$color
=
"#9ddb27"
;
//实现各行换色的效果
}
}
while
(
$i
% 7 != 0) {
//将剩余的空格补完
echo
"<td bgcolor='#2ca50c'> </td>"
;
$i
++;
}
echo
"</tr>"
;
}
//3、用于用户调整天数
private
function
chageDate(
$url
=
"index.php"
) {
echo
"<tr>"
;
echo
"<caption><h1>"
.
$this
->year.
"年"
.
$this
->month.
"月</h1></caption>"
;
echo
"</tr>"
;
echo
"<tr>"
;
echo
"<td>"
.
"<a href='?"
.
$this
->prevYear(
$this
->year,
$this
->month).
"'>"
.
"<"
.
"</a>"
;
echo
"<td>"
.
"<a href='?"
.
$this
->prevMonth(
$this
->year,
$this
->month).
"'>"
.
"<<"
.
"</a>"
;
echo
"<td colspan='3'>"
;
echo
'<select οnchange="window.location=\''
.
$url
.
'?year=\'+this.options[selectedIndex].value+\'&month='
.
$this
->month.
'\'">'
;
for
(
$year
= 2038;
$year
>= 1970;
$year
--) {
$selected
= (
$year
==
$this
->year)?
"selected"
:
""
;
echo
'<option '
.
$selected
.
' value="'
.
$year
.
'">'
.
$year
.
'</option>'
;
//echo '<option '.$selected.' value="'.$year.'">'.$year.'</option>';
}
echo
"</select>"
;
echo
'<select name="month" οnchange="window.location=\''
.
$url
.
'?year='
.
$this
->year.
'&month=\'+this.options[selectedIndex].value">'
;
for
(
$month
=1;
$month
<= 12;
$month
++){
$selected1
= (
$month
==
$this
->month) ?
"selected"
:
""
;
echo
'<option '
.
$selected1
.
' value="'
.
$month
.
'">'
.
$month
.
'</option>'
;
}
echo
'</select>'
;
echo
"</td>"
;
echo
"<td>"
.
"<a href='?"
.
$this
->nextMonth(
$this
->year,
$this
->month).
"'>"
.
">>"
.
"</a>"
;
echo
"<td>"
.
"<a href='?"
.
$this
->nextYear(
$this
->year,
$this
->month).
"'>"
.
">"
.
"</a>"
;
echo
"</tr>"
;
}
private
function
prevYear(
$year
,
$month
) {
//获取上一年的数据
$year
--;
if
(
$year
< 1970)
$year
= 1970;
return
"year={$year}&month={$month}"
;
}
private
function
prevMonth(
$year
,
$month
) {
if
(
$month
== 1) {
$year
--;
if
(
$year
< 1970)
$year
= 1970;
$month
= 12;
}
else
$month
--;
return
"year={$year}&month={$month}"
;
}
private
function
nextYear(
$year
,
$month
) {
//获取上一年的数据
$year
++;
if
(
$year
> 2038)
$year
= 2038;
return
"year={$year}&month={$month}"
;
}
private
function
nextMonth(
$year
,
$month
) {
if
(
$month
== 12) {
$year
++;
if
(
$year
> 2038)
$year
= 2038;
$month
= 1;
}
else
$month
++;
return
"year={$year}&month={$month}"
;
}
}
|
主页 index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<!doctype html>
<
html
>
<
head
>
<
meta
charset
=
"utf-8"
>
<
title
>日历显示</
title
>
<
style
>
table {
border:1px solid #050;
margin: 100px auto;
}
th {
width: 30px;
background-color: #0CC;
color: #fff;
height: 30px;
font-size: 20px;
}
#nowd {
color: yellow;
background: #F00;
}
td {
width: 30px;
text-align: center;
height: 25px;
color: #fff;
}
a {
display: block;
width: 35px;
height: 35px;
background: #0F9;
text-decoration: none;
text-align: center;
line-height: 35px;
}
a:hover {
background: #CF0;
color: #fff;
font-size: 20px;
}
</
style
>
</
head
>
<
body
>
<?
php
include "calendar.class.php";
$
ca
=
new
Calendar();
$ca->showCalendar();
?>
</
body
>
</
html
>
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/shofe11/article/details/37594187 。
最后此篇关于PHP实现简单日历类编写的文章就讲到这里了,如果你想了解更多关于PHP实现简单日历类编写的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!