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_STRICT
或E_WARNING
message。另请参阅date_default_timezone_set()
Changelog
版 | 描述 |
---|---|
5.1.0 | 现在发出E_STRICT和E_NOTICE时区错误。 |
Return Values
成功时返回指定的日落时间format
或FALSE
失败。
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或更高版本授权。