目录

PHP date_sunrise() 函数

❮ 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>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:

  • 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.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 时区错误

❮ PHP 日期/时间参考