PHP gmstrftime 日期时间函数

  • 定义和用法

    gmstrftime - 根据区域设置格式化 GMT/UTC 时间/日期
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    gmstrftime (string $format [, int $timestamp ] )   
    
    strftime() 的行为相同,只除了返回时间是格林威治标准时(GMT)。例如,当在东部标准时(EST,GMT -500)运行时,下面第一行显示“Dec 31 1998 20:00:00”,而第二行显示“Jan 01 1999 01:00:00”。
  • 参数

    参数 必需的 描述
    format 格式化字符串。
    timestamp 时间戳。默认当前时间戳。
  • 返回值

    根据区域设置格式化 GMT/UTC 时间/日期 字符串
  • 示例

    <?php
    setlocale(LC_TIME, 'en_US');
    echo strftime("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."<br/>";
    echo gmstrftime("%b %d %Y %H:%M:%S", mktime (20,0,0,12,31,98))."<br/>";
    
    尝试一下
  • 相关函数