Display the drop-down list

date_sun_info()

« date_default_timezone_set | date_sunrise »
<?php
// enter a $time or a $timestamp
// select a $city or enter the $latitude and $longitude

// gets a timestamp from a date
date_default_timezone_set(
    
? // string $timezone
);
$timestamp strtotime(
    
 // string $time
);

// gets the latitude and longitude of a city
list($latitude$longitude) = pbx_get_city_lat_lng(
    
? // string $city
);

$array date_sun_info (
    
// int $timestamp
    
// float $latitude
    
  // float $longitude
);

// shows the times in a readable format
$date_sun_info array_map(
    function(
$timestamp) { return date("H:i:s"$timestamp); },
    
$array);
?>
Result
$timestamp = 1165881600
$array = [
  
'sunrise' => 1165897782,
  
'sunset' => 1165934168,
  
'transit' => 1165915975,
  
'civil_twilight_begin' => 1165896176,
  
'civil_twilight_end' => 1165935773,
  
'nautical_twilight_begin' => 1165894353,
  
'nautical_twilight_end' => 1165937597,
  
'astronomical_twilight_begin' => 1165892570,
  
'astronomical_twilight_end' => 1165939380,
]
$date_sun_info = [
  
'sunrise' => '04:29:42',
  
'sunset' => '14:36:08',
  
'transit' => '09:32:55',
  
'civil_twilight_begin' => '04:02:56',
  
'civil_twilight_end' => '15:02:53',
  
'nautical_twilight_begin' => '03:32:33',
  
'nautical_twilight_end' => '15:33:17',
  
'astronomical_twilight_begin' => '03:02:50',
  
'astronomical_twilight_end' => '16:03:00',
]
Examples
#1 date_sun_info  (/* $timezone = "Europe/Paris" */
 /* $time = "now" */
 /* $city = "Paris" */
 
$timestamp,
 
$latitude,
 
$longitude)
#2 date_sun_info  (/* $timezone = "UTC" */
 /* $time = "2006-12-12" */
 
$timestamp,
 
31.7667,
 
35.2333)
#3 date_sun_info  (/* $timezone = "UTC" */
 
962409600,
 
50,
 
50)
See also
array_map, date, date_default_timezone_set, date_sunrise, date_sunset, pbx_get_city_lat_lng, strtotime