Latest web development tutorials

PHP date_sunrise () function

PHP Date / Time PHP Date / Time Reference Manual

Examples

Back in Lisbon, Portugal today Sunrise:

<?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));
?>

Running instance »

Definition and Usage

date_sunrise () function returns the date and place of the sunrise time.

Tip: See date_sunset () function returns the specified date and location of the sunset times.

grammar

date_sunrise( timestamp,format,latitude,longitude,zenith,gmtoffset);

参数 描述
timestamp 必需。规定要计算日出时间的日期时间戳。
format

可选。规定如何返回结果:

  • SUNFUNCS_RET_STRING(以 string 格式返回结果,比如 16:46)(默认)
  • SUNFUNCS_RET_DOUBLE(以 float 格式返回结果,比如 16.78243132)
  • SUNFUNCS_RET_TIMESTAMP(以 integer 格式(时间戳)返回结果,比如 1095034606)
latitude 可选。规定地点的纬度。默认是指北纬。因此如果要指定南纬,必须传递一个负值。
longitude 可选。规定地点的经度。默认是指东经。因此如果要指定西经,必须传递一个负值。
zenith 可选。默认为 date.sunrise_zenith。
gmtoffset 可选。规定 GMT 与本地时间的差值。单位是小时。

technical details

return value: If successful, places the specified format to return sunrise time. If it fails it returns FALSE.
PHP version: 5+
Update log: Starting from PHP 5.1.0, this function newspaper E_STRICT and E_NOTICE time zone errors.


PHP Date / Time PHP Date / Time Reference Manual