PHP strftime() 函数
PHP strftime() 函数
实例
根据区域设置格式化本地日期和时间:
<?php
echo(strftime("%B %d %Y, %X %Z",mktime(20,0,0,12,31,98))."<br>");
setlocale(LC_ALL,"hu_HU.UTF8");
echo(strftime("%Y. %B %d. %A. %X %Z"));
?>
运行实例 »
定义和用法
strftime() 函数根据区域设置格式化本地日期和时间。
提示:请查阅 gmstrftime() 函数,根据区域设置格式化 GMT/UTC 时间/日期。
语法
strftime(format,timestamp);
参数 | 描述 |
---|---|
format | 必需。规定如何返回结果:
|
timestamp | 可选。规定需要格式化的日期/时间的 Unix 时间戳。默认为当前时间(time())。 |
技术细节
返回值: | 返回根据 format 使用给定的 timestamp 格式化的字符串。月份和星期几的名称和其他语言相关的字符串遵守 setlocale() 中的当前区域设置。 |
---|---|
PHP 版本: | 4+ |
更新日志: | PHP 5.1.0:增加 E_STRICT 和 E_NOTICE 时区错误。 |
PHP Date/Time 参考手册
相关文章
- PHP 安装
- PHP 数组
- PHP 数组排序
- PHP 魔术常量
- PHP Secure E-mails
- PHP 错误处理
- PHP array_column() 函数
- PHP array_combine() 函数
- PHP array_count_values() 函数
- PHP array_diff_assoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_fill_keys() 函数
- PHP asort() 函数
- PHP count() 函数
- PHP list() 函数
- PHP rsort() 函数
- PHP shuffle() 函数
- PHP sort() 函数
- PHP 5 Math 函数
- PHP 杂项 函数