在线文档教程
PHP
日期和时间 | Date and Time

date_sun_info

date_sun_info

(PHP 5 >= 5.1.2, PHP 7)

date_sun_info - 返回一个包含有关日落/日出和黄昏开始/结束信息的数组

Description

array date_sun_info ( int $time , float $latitude , float $longitude )

Parameters

time

时间戳。

latitude

纬度(度)。

longitude

经度(度)。

Return Values

成功时返回数组或FALSE失败。

Examples

Example #1 A date_sun_info() example

<?php $sun_info = date_sun_info(strtotime("2006-12-12"), 31.7667, 35.2333 foreach ($sun_info as $key => $val) {     echo "$key: " . date("H:i:s", $val) . "\n"; } ?>

上面的例子将输出:

sunrise: 05:52:11 sunset: 15:41:21 transit: 10:46:46 civil_twilight_begin: 05:24:08 civil_twilight_end: 16:09:24 nautical_twilight_begin: 04:52:25 nautical_twilight_end: 16:41:06 astronomical_twilight_begin: 04:21:32 astronomical_twilight_end: 17:12:00

← date_sub

date_sunrise →

© 1997–2017 The PHP Documentation Group

根据知识共享署名许可证v3.0或更高版本授权。