欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php getdate函数怎么用

程序员文章站 2022-03-06 13:27:20
...

php getdate函数用于返回当前本地的“日期/时间”的“日期/时间”信息,其语法为“getdate(timestamp)”,该函数会返回带有与时间戳相关的信息的关联数组。

php getdate函数怎么用

php getdate()函数用于返回当前本地的日期/时间的日期/时间信息,语法为getdate(timestamp)。该函数会返回带有与时间戳相关的信息的关联数组。

php getdate函数怎么用?

作用:返回当前本地的日期/时间的日期/时间信息

语法:

getdate(timestamp)

参数:

timestamp 可选。规定 Unix 时间戳,整数值。默认为当前本地时间(time())。

说明:返回带有与时间戳相关的信息的关联数组:[seconds] - 秒,[minutes] - 分,[hours] - 小时,[mday] - 一个月中的第几天,[wday] - 一周中的某天,[mon] - 月,[year] - 年,[yday] - 一年中的某天,[weekday] - 星期几的名称,[month] - 月份的名称,[0] - 自 Unix 纪元以来经过的秒数。

php getdate()函数 示例

<?php
print_r(getdate(1524123066));
?>

输出:

Array ( [seconds] => 6 [minutes] => 31 [hours] => 15 [mday] => 19 [wday] => 4 [mon] => 4 [year] => 2018 [yday] => 108 [weekday] => Thursday [month] => April [0] => 1524123066 )

本篇文章就是关于getdate()函数的使用方法介绍,希望对需要的朋友有所帮助!

以上就是php getdate函数怎么用的详细内容,更多请关注其它相关文章!

相关标签: getdate函数