目录

PHP gmmktime() 函数

❮ PHP 日期/时间参考

示例

返回 GMT 日期的 Unix 时间戳。然后用它来查找该日期的日期:

<?php
// Prints: October 3, 1975 was on a Friday
echo "Oct 3, 1975 was on a ".date("l", gmmktime(0,0,0,10,3,1975));
?>
亲自试一试 »

定义和用法

gmmktime() 函数返回 GMT 日期的 Unix 时间戳。

提示:该功能等同于MKTIME()除了传递的参数代表 GMT 日期。


语法

gmmktime( hour, minute, second, month, day, year, is_dst)

参数值

Parameter Description
hour Optional. Specifies the hour
minute Optional. Specifies the minute
second Optional. Specifies the second
month Optional. Specifies the month
day Optional. Specifies the day
year Optional. Specifies the year
is_dst Optional. Parameters always represent a GMT date so is_dst doesn't influence the result. Note: This parameter is removed in PHP 7.0. The new timezone handling features should be used instead

技术细节

返回值: 返回整数 Unix 时间戳
PHP 版本: 4+
PHP 变更日志: PHP 5.1:is_dst参数已被弃用
PHP 7.0:is_dst参数已被删除

❮ PHP 日期/时间参考