您现在的位置是:首页 > PHP函数

李清波 2015-09-30 PHP函数 1876 复制当前网址

gmstrftime



PHP gmstrftime() 函数

定义和用法

gmstrftime() 函数根据本地区域设置格式化 GMT/UTC 时间/日期。

语法

gmstrftime(format,timestamp)


参数描述
format可选。规定如何返回结果。
timestamp可选。


提示和注释

提示:与 strftime() 的行为相同,不同的是返回时间是格林威治标准时(GMT)。


例子

输出 strftime() 和 gmstrftime() 的结果:

<?php
echo(strftime("%b %d %Y %X", mktime(20,0,0,12,31,98)));
echo(gmstrftime("%b %d %Y %X", mktime(20,0,0,12,31,98)));

//输出当前日期、时间和时区
echo(gmstrftime("It is %a on %b %d, %Y, %X time zone: %Z",time()));
?>

输出:

Dec 31 1998 20:00:00
Dec 31 1998 19:00:00
It is Wed on Jan 25, 2006, 11:32:10 time zone: W. Europe Standard Time


文章来源:https://liqingbo.com/blog-545.html

上一篇:idate

下一篇:gmmktime

评论