PHP
日期和时间 | Date and Time

gmstrftime

gmstrftime

(PHP 4, PHP 5, PHP 7)

gmstrftime - 根据区域设置格式化GMT / UTC时间/日期

Description

string gmstrftime ( string $format [, int $timestamp = time() ] )

除了返回的时间是格林威治标准时间(GMT)外,其行为与strftime()相同。例如,在东部标准时间(GMT -0500)运行时,下面的第一行显示“Dec 31 1998 20:00:00”,而第二行显示“Jan 01 1999 01:00:00”。

Parameters

format

请参阅strftime()中的说明。

timestamp

可选timestamp参数是一个整数Unix时间戳,默认为当前本地时间,如果timestamp没有给出。换句话说,它默认为time()的值。

Return Values

timestamp如果没有给出时间戳,则返回一个字符串,它根据给定的格式字符串使用给定或当前本地时间格式化。月份和星期几名称以及其他依赖于语言的字符串使用setlocale()来尊重当前语言环境。

Examples

Example #1 gmstrftime() example

<?php setlocale(LC_TIME, 'en_US' echo strftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n"; echo gmstrftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n"; ?>

← gmmktime

idate →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。