返回葡萄牙里斯本今日日出时间:
<?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>Sunrise time: ");
echo(date_sunrise(time(),SUNFUNCS_RET_STRING,38.4,-9,90,1));
?>
亲自试一试 »
date_sunrise() 函数返回指定日期和地点的日出时间。
提示:看着那(这日期_日落()函数返回指定日期和地点的日落时间。
date_sunrise(
timestamp, format, latitude, longitude, zenith, gmtoffset)
Parameter | Description |
---|---|
timestamp | Required. Specifies the timestamp of the day from which the sunrise 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.sunrise_zenith |
gmtoffset | Optional. Specifies the difference between GMT and local time in hours |
返回值: | 返回指定时间的日出时间格式,关于成功。失败时为 FALSE |
---|---|
PHP 版本: | 5+ |
PHP 变更日志: | PHP 5.1:此函数现在发出 E_STRICT 和 E_NOTICE 时区错误 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!