目录

PHP date_sunset() 函数

❮ PHP 日期/时间参考

示例

返回葡萄牙里斯本今天的日落时间:

<?php
// Lisbon, Portugal:
// Latitude: 38.4 North, Longitude: 9 West
// Zenith ~= 90, offset: +1 GMT

echo("Lisbon, Portugal: Date: " . date("D M d Y"));
echo("<br>Sunset time: ");
echo(date_sunset(time(),SUNFUNCS_RET_STRING,38.4,-9,90,1));
?>
亲自试一试 »

定义和用法

date_sunset() 函数返回指定日期和地点的日落时间。

提示:看着那(这日期_日出()函数返回指定日期和地点的日出时间。


语法

date_sunset( timestamp, format, latitude, longitude, zenith, gmtoffset)

参数值

Parameter Description
timestamp Required. Specifies the timestamp of the day from which the sunset time is taken
format

Optional. Specifies how to return the result:

  • SUNFUNCS_RET_STRING (returns the result as string. e.g. 16:46) (This is default)
  • SUNFUNCS_RET_DOUBLE (returns the result as float. e.g. 16.78243132)
  • SUNFUNCS_RET_TIMESTAMP (returns the result as integer (timestamp). e.g. 1095034606)
latitude Optional. Specifies the latitude of the location. Defaults to North. To specify a value for South, pass in a negative value
longitude Optional. Specifies the longitude of the location. Defaults to East. To specify a value for West, pass in a negative value
zenith Optional. Defaults to date.sunset_zenith
gmtoffset Optional. Specifies the difference between GMT and local time in hours


技术细节

返回值: 返回指定时间的日落时间格式,关于成功。失败时为 FALSE
PHP 版本: 5+
变更日志: 从 PHP 5.1.0 开始,此函数生成 E_STRICT 和 E_NOTICE 时区错误

❮ PHP 日期/时间参考