PHP gmstrftime() 函數(shù)
PHP gmstrftime() 函數(shù)
實例
根據(jù)區(qū)域設(shè)置格式化 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() 函數(shù)根據(jù)區(qū)域設(shè)置格式化 GMT/UTC 日期和時間。
提示:請查閱 strftime() 函數(shù),根據(jù)區(qū)域設(shè)置格式化本地時間/日期。
語法
gmstrftime(format,timestamp);
參數(shù) | 描述 |
---|---|
format | 必需。規(guī)定如何返回結(jié)果:
|
timestamp | 可選。規(guī)定需要格式化的日期/時間的 Unix 時間戳。默認為當前時間(time())。 |
技術(shù)細節(jié)
返回值: | 返回根據(jù) format 使用給定的 timestamp 格式化的字符串。月份和星期幾的名稱和其他語言相關(guān)的字符串遵守 setlocale() 中的當前區(qū)域設(shè)置。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP 語法
- PHP $_GET 變量
- PHP array_column() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP key() 函數(shù)
- PHP natsort() 函數(shù)
- PHP sort() 函數(shù)
- PHP usort() 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)
- PHP 5 MySQLi 函數(shù)