PHP gmstrftime() 函数
PHP gmstrftime() 函数
实例
根据区域设置格式化 GMT/UTC 日期和时间:
<?php
echo(gmstrftime("%B %d %Y, %X %Z",mktime(20,0,0,12,31,98))."<br>");
setlocale(LC_ALL,"hu_HU.UTF8");
echo(gmstrftime("%Y. %B %d. %A. %X %Z"));
?>
echo(gmstrftime("%B %d %Y, %X %Z",mktime(20,0,0,12,31,98))."<br>");
setlocale(LC_ALL,"hu_HU.UTF8");
echo(gmstrftime("%Y. %B %d. %A. %X %Z"));
?>
运行实例 »
定义和用法
gmstrftime() 函数根据区域设置格式化 GMT/UTC 日期和时间。
提示:请查阅 strftime() 函数,根据区域设置格式化本地时间/日期。
语法
gmstrftime(format,timestamp);
参数 | 描述 |
---|---|
format | 必需。规定如何返回结果:
|
timestamp | 可选。规定需要格式化的日期/时间的 Unix 时间戳。默认为当前时间(time())。 |
技术细节
返回值: | 返回根据 format 使用给定的 timestamp 格式化的字符串。月份和星期几的名称和其他语言相关的字符串遵守 setlocale() 中的当前区域设置。 |
---|---|
PHP 版本: | 4+ |
PHP Date/Time 参考手册
相关文章
- PHP 语法
- PHP $_GET 变量
- PHP array_column() 函数
- PHP array_diff_assoc() 函数
- PHP array_filter() 函数
- PHP array_key_exists() 函数
- PHP array_keys() 函数
- PHP array_pad() 函数
- PHP array_pop() 函数
- PHP array_shift() 函数
- PHP array_udiff_assoc() 函数
- PHP asort() 函数
- PHP count() 函数
- PHP key() 函数
- PHP natsort() 函数
- PHP sort() 函数
- PHP usort() 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP 5 MySQLi 函数