目录

PHP date_sun_info() 函数

❮ PHP 日期/时间参考

示例

返回 2013 年 1 月 1 日纬度 31.7667、经度 35.2333 的日落/日出和黄昏开始/结束的信息:

<?php
$sun_info=date_sun_info(strtotime("2013-01-01"),31.7667,35.2333);
foreach ($sun_info as $key=>$val)
  {
  echo "$key: " . date("H:i:s",$val) . "<br>";
  }
?>
亲自试一试 »

定义和用法

date_sun_info() 函数返回一个数组,其中包含有关指定日期和位置的日落/日出和黄昏开始/结束的信息。

提示:看着那(这日期_日出()函数返回指定日期和地点的日出时间。

提示:看着那(这日期_日落()函数返回指定日期和地点的日落时间。


语法

date_sun_info( timestamp, latitude, longitude)

参数值

Parameter Description
timestamp Required. Specifies a timestamp
latitude Required. Specifies the latitude in degrees
longitude Required. Specifies the longitude in degrees

技术细节

返回值: 成功时返回一个数组。失败时为 FALSE
PHP 版本: 5.1.2+

❮ PHP 日期/时间参考