strftime() 函数根据区域设置格式化本地时间/日期。
strftime(format,timestamp)
format,可选。规定如何返回结果。timestamp,可选。
提示:与 gmstrftime() 的行为相同,不同的是返回时间是本地时间。
输出 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
欢迎光临 PHP开发笔记 (http://phpvi.com/) | Powered by Discuz! 6.1.0 |