getdate
getdate
(PHP 4, PHP 5, PHP 7)
getdate - 获取日期/时间信息
Description
array getdate ([ int $timestamp = time() ] )
timestamp
如果没有timestamp
给出,则返回包含该日期信息或当前本地时间的关联数组。
Parameters
timestamp
可选timestamp
参数是一个整数Unix时间戳,默认为当前本地时间,如果timestamp
没有给出。换句话说,它默认为time()的值。
Return Values
返回与该相关信息的关联数组timestamp
。返回的关联数组元素如下所示:
键 | 描述 | 示例返回的值 |
---|---|---|
“秒” | 秒的数字表示 | 0至59 |
“分钟” | 分钟的数字表示 | 0至59 |
“小时” | 小时的数字表示 | 0至23 |
“MDAY” | 月份的日子的数字表示 | 1至31 |
“wday” | 星期几的数字表示 | 0(星期日)到6(星期六) |
“星期一” | 一个月的数字表示 | 1至12 |
“年” | 一年的完整数字表示,4位数字 | 例如:1999年或2003年 |
“yday” | 一年中的一天的数字表示 | 0到365 |
“工作日” | 星期几的完整文本表示 | 周日到周六 |
“月” | 一个月的全文表示,例如1月或3月 | 1月至12月 |
0 | 自Unix纪元以来的秒数,类似于time()返回的值和date()使用的值。 | 系统依赖,通常为-2147483648到2147483647。 |
Examples
Example #1 getdate() example
<?php
$today = getdate(
print_r($today
?>
上面的例子会输出类似于:
Array
(
[seconds] => 40
[minutes] => 58
[hours] => 21
[mday] => 17
[wday] => 2
[mon] => 6
[year] => 2003
[yday] => 167
[weekday] => Tuesday
[month] => June
[0] => 1055901520
)
gettimeofday →
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。