All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
php之str_replace_php资料_编程技术
Visual C++ 6.0教程:函数的定义与调用
PHP的服务器Apache中httpd.conf 的中文详解_[PHP教程]
ASP.NET技巧:正则表达式提取数字_[Asp.Net教程]
2个页面间不通过Session与url的传值方式_[Asp.Net教程]
PHP实例:PHP制作的网站意见在线反馈表_[PHP教程]
安全技巧:用PHP,4.2书写安全的脚本_php资料_编程技术
利用PHP+javascript打造AJAX搜索窗_php资料_编程技术
ASP.NET,2.0中的页面输出缓存_[Asp.Net教程]
ADO.NET起步_[Asp.Net教程]
Reading number is top 10 pictures
The world's top ten most beautiful railway station1
Kim jong il's mistress, national beauty JinYuJi actor2
China telecom 114 spokesman MeiYanXu2
Men don't mature ten sign
做运动的校花1
Absolutely shocked. National geographic 50 animal photographys4
福利福利。。。。。。
Summer is most suitable for young people to travel in China8
中国处女图鉴2
Group of female porn in 《westwards》, uninhibited woman threatened to not the bottom line1
Download software ranking
网络管理员第三版
尖东毒玫瑰A
美女写真2
Photoshop 8.0图象编辑软件
艳兽都市
Unix video tutorial11
终极变速大师Speeder3.26
Tram sex maniac 2 (H) rar bag8
Eclipse 4.2.1 For Win32
C语言教程TXT
归海一刀 published in(发表于) 2014/2/17 7:34:56 Edit(编辑)
PHP技巧:PHP中时间和日期函数总结_[PHP教程]

PHP技巧:PHP中时间和日期函数总结_[PHP教程]

PHP技巧:PHP中时间和日期函数总结_[PHP教程]

PHP中所有函数都是UNIX纪元的,即从1970年1月1日开始的。日期是从这个时候开始的秒数。当一个函数调用从这时候计的秒数时,就把它当作(timestamp)时间戳。
本地时间函数
1. string date(string format,inieger timestamp)
该函数返回一个表示时间的字符串,是由string format 控制的。
如:
print(date("Y年 m月d日");//输出当前,年月日.
print(date("Y年 m月d日",60*60*24*365*10);//输出1980年1月1日.
?>
也许你会问,怎麽没有timestamp呢?若timestamp为空时,或不写时,表示使用当前时间一刻timestamp.
表示年份的控制符: Y---四位的年份 y---两位的年份
表示月份的控制符: m---从1-12的月份 F---英文月份名 M---简写的月份名
表示日号的控制符: d---前面有0的月份中日期 j--前面没有0的日号
表示星期的控制符: l--英文星期 D--简写的星期
表示小时的控制符: h--从1到12小时 H---从0到23的小时
表示上下午的控制符 a ---am或pm A---AM或PM
表示分钟的控制符: i---取值00-59
另外的 z--一年中的日期
2. array getdate(integer timestamp)
该函数返回一个矩阵.
如:
current_date=getdate();
print(current_date("hours"));
print(current_date("minutes");
print(current_date("seconds");
?>
说明:
元素 描述
hours 24小时格式的小时
mday 月份中日期
minutes 分钟
mon 数字形式的月份
month 月份全称
seconds 秒数
wday 从0到6的数字形式的星期几
weekday 星期几的名称
year 年份
0 时间戳即从1970年1月1日到现在的秒数
yday 一年中数字形式的日期
3. boolean checkdate(integer month,integer day,integer year)
该函数检查日期是否合法.如:
if(checkdate(2,29,1980))
print("日期合法!n");
?>
4. integer time()
该函数获得当前时间戳.如:
print(time());//输出一大串整数
?>
5. integer mktime(integer hour,integer minutes,integer seconds,integer month, integer day,integer year)
该函数返回给出日期的时间戳,即从1970年1月1日到现在的秒数.
如某参数超出范围,该函数也可以解释它,如13月即为第二年的一月.
如:
currenthour=date("H");
print("50个小时后为:");
print(date("h:i A l F dS,Y",mktime(currenthour 50)));
print("
n");
?>
6. string microtime()
该函数返回一个字符串,由当前时间的毫秒数 空格 从1970年开始的秒数
print("start:microtime()
n");
for(index=0;index<1000;index )
print("good!");
print("stop:microtime()
n");
?>
还有,各林威治标准时间函数,不常用我就不说了!常用的就这些。

来源:网络






添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.