php简单的日历代码,php简单的日历程序代码

PHP提供了date()函数,该函数提供了丰富的日期处理功能,现在需要获得的数据有两个,第一个是当月的总天数,第二个是该月的第一天所在星期中的第几天,数字表示0(表示星期天)到6(表示星期六).

通过date()函数可以很容易获得上面的数据,代码如下:<?php

$month = $_GET['m']?$_GET['m']:date(‘n’);

$year = $_GET['y']?$_GET['y']:date(‘Y’);

$start_week = date(‘w’,mktime(0,0,0,$month,1,$year));

$day_num = date(‘t’,mktime(0,0,0,$month,1,$year));

$end = false;

?>

星期日星期一星期二星期三星期四星期五星期六

for($i = 0; $i

{

echo “

”;

}

$j=1;

while($j<=$day_num)

{

echo “

$j”;

$week = ($start_week+$j-1)%7;

if($week ==6){

echo “nt

n”;

if($j != $day_num)

echo “t

ntt”;

else $end = true;

}

$j++;

}

while($week%7 != 6)

{

echo “

”;

$week++;

}

if(!$end)

echo “n

”;

?>

高级一点类<?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 '

$this->showChangeDate();

$this->showWeeks();

$this->showDays($this->year,$this->month);

echo '

';

}

private function showWeeks()

{

echo '

';

foreach($this->weeks as $title)

{

echo '

'.$title.'';

}

echo '

';

}

private function showDays($year, $month)

{

$firstDay = mktime(0, 0, 0, $month, 1, $year);

$starDay = date('w', $firstDay);

$days = date('t', $firstDay);

echo '

';

for ($i=0; $i

echo '

 ';

}

for ($j=1; $j<=$days; $j++) {

$i++;

if ($j == date('d')) {

echo '

'.$j.'';

} else {

echo '

'.$j.'';

}

if ($i % 7 == 0) {

echo '

';

}

}

echo '

';

}

private function showChangeDate()

{

$url = basename($_SERVER['PHP_SELF']);

echo '

';

echo '

preYearUrl($this->year,$this->month).'">'.'<';

echo '

preMonthUrl($this->year,$this->month).'">'.'';

echo '

';

echo 'month.''">';

for($ye=1970; $ye<=2038; $ye++) {

$selected = ($ye == $this->year) ? 'selected' : '';

echo ''.$ye.'';

}

echo '';

echo 'year.'&month='+this.options[selectedIndex].value+''">';

for($mo=1; $mo<=12; $mo++) {

$selected = ($mo == $this->month) ? 'selected' : '';

echo ''.$mo.'';

}

echo '';

echo '

';

echo '

nextMonthUrl($this->year,$this->month).'">'.'>'.'';

echo '

nextYearUrl($this->year,$this->month).'">'.'>>'.'';

echo '

';

}

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;

}

}

调用方法<?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';

?>

日历demo

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;

}

$cal = new Calendar($params);

$cal->display();

?>

转载随意^^请带上本文地址!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值