快速业务通道

PHP教程:时间函数

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-03-16

PHP中的日期时间基本上基于UNIX时间戳来处理的。
比如date/getdate()/mktime()/strftime()/strtotime/time等都与时间戳有着密切的关联。
这些函数的用法可查阅相关文档,这里就不对这些函数作解释了。
要将时间戳转为可读的形式,就需要date函数出马了,他需要二个参数:格式化字符串与时间戳。
比较难记的是格式化字符,不过常用的也就是YymdwHis,其它的亦可参阅文档。

将可读的日期转为时间戳通常用以下二个函数:
mktime
如:
$timestam = mktime(18,30,00,8,10,1981);
将得到1981年8月10日下午6点30整的时间戳。
另一个比较NB的是strtotime,看名字就是将字符串转为一个时间戳。
它的NB之处不在于解析如:Tue,15 Mar 2005 15:23:52或2008-01-01此类的字符串,strtotime还可以“理解”一定的英语。
如下面的代码:

<?php
date_default_timezone_set("PRC");
$mydatestring = array(''now'',''today'',''tomorrow'',''yesterday'',''thursday'',''this thursday'',''last thursday'',''+2 hours'',''-1 month'',''30 seconds'',''next week'',''last year'',''2 weeks ago'');
foreach($mydatestring as $item)
{
echo "$item:".date(''r'',strtotime($item)).''<br />'';
}
?>

输出:

now:Sat, 28 Feb 2009 11:03:35 +0800
today:Sat, 28 Feb 2009 00:00:00 +0800
tomorrow:Sun, 01 Mar 2009 00:00:00 +0800
yesterday:Fri, 27 Feb 2009 00:00:00 +0800
thursday:Thu, 05 Mar 2009 00:00:00 +0800
this thursday:Thu, 05 Mar 2009 00:00:00 +0800
last thursday:Thu, 26 Feb 2009 00:00:00 +0800
+2 hours:Sat, 28 Feb 2009 13:03:35 +0800
-1 month:Wed, 28 Jan 2009 11:03:35 +0800
30 seconds:Sat, 28 Feb 2009 11:04:05 +0800
next week:Sat, 07 Mar 2009 11:03:35 +0800
last year:Thu, 28 Feb 2008 11:03:35 +0800
2 weeks ago:Sat, 14 Feb 2009 11:03:35 +0800

 

再如我要查找下个月的第一个星期五:

$nextmonth = date(''Y-''.(date(''n'')+1).''-0'');
$nextmonth_timest = strtotime($nextmonth);
$first_fri = strtotime(''Fri'',$nextmonth_timest);
echo "Today:".date(''Y-m-d'');
echo ''<br />'';
echo ''the first Fri of next month is :''.date(''Y-m-d'',$first_fri);

 

输出:
Today:2009-02-28
the first Fri of next month is :2009-03-06

还有太多太多,以后有时间再写。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号