php getdate函数用于返回当前本地的“日期/时间”的“日期/时间”信息,其语法为“getdate(timestamp)”,该函数会返回带有与时间戳相关的信息的关联数组。
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()函数的使用方法介绍,希望对需要的朋友有所帮助!
Atas ialah kandungan terperinci php getdate函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!