在线文档教程
PHP
日期和时间 | Date and Time

date_sunset

date_sunset

(PHP 5, PHP 7)

date_sunset - 返回给定日期和位置的日落时间

Description

mixed date_sunset ( int $timestamp [, int $format = SUNFUNCS_RET_STRING [, float $latitude = ini_get("date.default_latitude") [, float $longitude = ini_get("date.default_longitude") [, float $zenith = ini_get("date.sunset_zenith") [, float $gmt_offset = 0 ]]]]] )

date_sunset()返回给定日期(指定为timestamp)和位置的日落时间。

Parameters

timestamp

timestamp从日落时间拍摄的日子。

format

不变描述
SUNFUNCS_RET_STRING以字符串形式返回结果16:46
SUNFUNCS_RET_DOUBLE以浮点形式返回结果16.78243132
SUNFUNCS_RET_TIMESTAMP以整数(时间戳)返回结果1095034606

latitude

默认为北,向南传递负值。

longitude

默认为East,传入West的负值。

zenith

默认值:date.sunset_zenith

gmtoffset

以小时数指定。

Errors/Exceptions

如果使用系统设置或TZ环境变量E_NOTICE,则每次调用日期/时间函数都会生成一个如果时区无效的信息和/或E_STRICTE_WARNINGmessage。另请参阅date_default_timezone_set()

Changelog

描述
5.1.0现在发出E_STRICT和E_NOTICE时区错误。

Return Values

成功时返回指定的日落时间formatFALSE失败。

Examples

Example #1 date_sunset() example

<?php /* calculate the sunset time for Lisbon, Portugal Latitude: 38.4 North Longitude: 9 West Zenith ~= 90 offset: +1 GMT */ echo date("D M d Y"). ', sunset time : ' .date_sunset(time(), SUNFUNCS_RET_STRING, 38.4, -9, 90, 1 ?>

上面的例子会输出类似于:

Mon Dec 20 2004, sunset time : 18:13

← date_sunrise

date_time_set →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。