返回葡萄牙里斯本今天的日落时间:
<?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:
|
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 时区错误 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!