php calender(日历)二个版本代码示例(解决2038问题)
2015-01-24信息快讯网
一个简单的php Calender(日历),解决了2038问题,这样在32位机和64位机上都可以用了,代码很简单,方便修改
注意32位机有2038问题,所以32位服务器的年限范围1970年~2038年
我们还可以使用DateTime来规避这个问题(这样与32位64位无关了)
<?php
/**
*
* 我的日历
* date_default_timezone_set date mktime
* @param int $year
* @param int $month
* @param string $timezone
* @author fc_lamp
* @blog: fc-lamp.blog.163.com
*/
function myCalender($year = '', $month = '', $timezone = 'Asia/Shanghai')
{
date_default_timezone_set ( $timezone );
$year = abs ( intval ( $year ) );
$month = abs ( intval ( $month ) );
//是否是32位机
if (is32())
{
if ($year < 1970 or $year >= 2038)
{
$year = date ( 'Y' );
}
} else
{
if ($year <= 0)
{
$year = date ( 'Y' );
}
}
if ($month <= 0 or $month > 12)
{
$month = date ( 'm' );
}
//上一年
$pretYear = $year - 1;
//上一月
$mpYear = $year;
$preMonth = $month - 1;
if ($preMonth <= 0)
{
$preMonth = 1;
$mpYear = $pretYear;
}
//下一年
$nextYear = $year + 1;
//下一月
$mnYear = $year;
$nextMonth = $month + 1;
if ($nextMonth > 12)
{
$nextMonth = 1;
$mnYear = $nextYear;
}
//日历头
$html = <<<HTML
<table width="500" border="1">
<tr align="center">
<td><a href="?y=$pretYear">上一年</a></td>
<td><a href="?y=$mpYear&m=$preMonth">上一月</a></td>
<td><a href="?">回到今天</a></td>
<td><a href="?y=$mnYear&m=$nextMonth">下一月</a></td>
<td><a href="?y=$nextYear">下一年</a></td>
</tr>
<tr align="center">
<td colspan="5">{$year}年{$month}月</td>
</tr>
<tr>
<td colspan="5">
<table width="100%" border="1">
<tr align="center">
<td style="background-color:#DAF0DD;">星期一</td>
<td style="background-color:#DAF0DD;">星期二</td>
<td style="background-color:#DAF0DD;">星期三</td>
<td style="background-color:#DAF0DD;">星期四</td>
<td style="background-color:#DAF0DD;">星期五</td>
<td style="background-color:#F60;color:#fff;font-weight: bold;">星期六</td>
<td style="background-color:#F60;color:#fff;font-weight: bold;">星期天</td>
</tr>
HTML;
$currentDay = date ( 'Y-m-j' );
//当月最后一天
$lastday = date ( 'j', mktime ( 0, 0, 0, $nextMonth, 0, $year ) );
//循环输出天数
$day = 1;
$line = '';
while ( $day <= $lastday )
{
$cday = $year . '-' . $month . '-' . $day;
//当前星期几
$nowWeek = date ( 'N', mktime ( 0, 0, 0, $month, $day, $year ) );
if ($day == 1)
{
$line = '<tr align="center">';
$line .= str_repeat ( '<td> </td>', $nowWeek - 1 );
}
if ($cday == $currentDay)
{
$style = 'style="color:red;"';
} else
{
$style = '';
}
$line .= "<td $style>$day</td>";
//一周结束
if ($nowWeek == 7)
{
$line .= '</tr>';
$html .= $line;
$line = '<tr align="center">';
}
//全月结束
if ($day == $lastday)
{
if ($nowWeek != 7)
{
$line .= str_repeat ( '<td> </td>', 7 - $nowWeek );
}
$line .= '</tr>';
$html .= $line;
break;
}
$day ++;
}
$html .= <<<HTML
</table>
</td>
</tr>
</table>
HTML;
return $html;
}
/**
*
* 检测是否是32位机
* @author fc_lamp
* @blog: fc-lamp.blog.163.com
*/
function is32()
{
$is32 = False;
if (strtotime ( '2039-10-10' ) === False)
{
$is32 = True;
}
return $is32;
}
使用DateTime 类解决2038问题,这样不分32位与64位,代码如下:
<?php
/**
*
* 我的日历(DateTime版本)
* date_default_timezone_set date mktime
* @param int $year
* @param int $month
* @param string $timezone
* @author fc_lamp
* @blog: fc-lamp.blog.163.com
*/
function myCalender($year = '', $month = '', $timezone = 'Asia/Shanghai')
{
date_default_timezone_set ( $timezone );
$year = abs ( intval ( $year ) );
$month = abs ( intval ( $month ) );
$nowDate = new DateTime();
if ($year <= 0)
{
$year = $nowDate->format( 'Y' );
}
if ($month <= 0 or $month > 12)
{
$month = $nowDate->format('m' );
}
//上一年
$pretYear = $year - 1;
//上一月
$mpYear = $year;
$preMonth = $month - 1;
if ($preMonth <= 0)
{
$preMonth = 1;
$mpYear = $pretYear;
}
//下一年
$nextYear = $year + 1;
//下一月
$mnYear = $year;
$nextMonth = $month + 1;
if ($nextMonth > 12)
{
$nextMonth = 1;
$mnYear = $nextYear;
}
//日历头
$html = <<<HTML
<table width="500" border="1">
<tr align="center">
<td><a href="?y=$pretYear">上一年</a></td>
<td><a href="?y=$mpYear&m=$preMonth">上一月</a></td>
<td><a href="?">回到今天</a></td>
<td><a href="?y=$mnYear&m=$nextMonth">下一月</a></td>
<td><a href="?y=$nextYear">下一年</a></td>
</tr>
<tr align="center">
<td colspan="5">{$year}年{$month}月</td>
</tr>
<tr>
<td colspan="5">
<table width="100%" border="1">
<tr align="center">
<td style="background-color:#DAF0DD;">星期一</td>
<td style="background-color:#DAF0DD;">星期二</td>
<td style="background-color:#DAF0DD;">星期三</td>
<td style="background-color:#DAF0DD;">星期四</td>
<td style="background-color:#DAF0DD;">星期五</td>
<td style="background-color:#F60;color:#fff;font-weight: bold;">星期六</td>
<td style="background-color:#F60;color:#fff;font-weight: bold;">星期天</td>
</tr>
HTML;
$currentDay = $nowDate->format('Y-m-j' );
//当月最后一天
$creatDate = new DateTime("$year-$nextMonth-0");
$lastday = $creatDate->format('j');
$creatDate = NULL;
//循环输出天数
$day = 1;
$line = '';
while ( $day <= $lastday )
{
$cday = $year . '-' . $month . '-' . $day;
//当前星期几
$creatDate = new DateTime("$year-$month-$day");
$nowWeek = $creatDate->format('N');
$creatDate = NULL;
if ($day == 1)
{
$line = '<tr align="center">';
$line .= str_repeat ( '<td> </td>', $nowWeek - 1 );
}
if ($cday == $currentDay)
{
$style = 'style="color:red;"';
} else
{
$style = '';
}
$line .= "<td $style>$day</td>";
//一周结束
if ($nowWeek == 7)
{
$line .= '</tr>';
$html .= $line;
$line = '<tr align="center">';
}
//全月结束
if ($day == $lastday)
{
if ($nowWeek != 7)
{
$line .= str_repeat ( '<td> </td>', 7 - $nowWeek );
}
$line .= '</tr>';
$html .= $line;
break;
}
$day ++;
}
$html .= <<<HTML
</table>
</td>
</tr>
</table>
HTML;
return $html;
}
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
Yii2使用小技巧之通过 Composer 添加 FontAwesome 字体资源
浅析application/x-www-form-urlencoded和multipart/form-data的区别
destoon整合ucenter后注册页面不跳转的解决方法
destoon整合UCenter图文教程
destoon安装出现Internal Server Error的解决方法
windows下配置apache+php+mysql时出现问题的处理方法
PHP中strlen()和mb_strlen()的区别浅析
ThinkPHP CURD方法之table方法详解
ThinkPHP Mobile使用方法简明教程
PHPAnalysis中文分词类详解
使用PHP函数scandir排除特定目录
PHP使用Alexa API获取网站的Alexa排名例子
PHP开源开发框架ZendFramework使用中常见问题说明及解决方案
PHP捕获Fatal error错误的方法
教你如何在CI框架中使用 .htaccess 隐藏url中index.php
ECMall支持SSL连接邮件服务器的配置方法详解
php下载excel无法打开的解决方法
discuz免激活同步登入代码修改方法(discuz同步登录)
php jquery 多文件上传简单实例
解决file_get_contents无法请求https连接的方法
php配合jquery实现增删操作具体实例
PHP eval函数使用介绍
Server.HTMLEncode让代码在页面里显示为源代码
PHP上传文件时文件过大$_FILES为空的解决方法
php用header函数实现301跳转代码实例
php解析xml提示Invalid byte 1 of 1-byte UTF-8 sequence错误的处理方法
PHP PDOStatement:bindParam插入数据错误问题分析
CodeIgniter生成网站sitemap地图的方法
PHP反射类ReflectionClass和ReflectionObject的使用方法
php file_get_contents抓取Gzip网页乱码的三种解决方法
PHP set_error_handler()函数使用详解(示例)
PHP开发工具ZendStudio下Xdebug工具使用说明详解
PHP imagegrabscreen和imagegrabwindow(截取网站缩略图)的实例代码
php中OR与|| AND与&&的区别总结
php mysql_real_escape_string函数用法与实例教程
分享下PHP register_globals 值为on与off的理解
PHP取整函数:ceil,floor,round,intval的区别详细解析